cleared console problems
This commit is contained in:
@@ -105,7 +105,7 @@ class _TenderDetailDesktopPageState extends State<TenderDetailDesktopPage> {
|
||||
|
||||
return Column(
|
||||
children: [
|
||||
DesktopNavigationWidget(
|
||||
const DesktopNavigationWidget(
|
||||
currentIndex: 1, // Home index
|
||||
),
|
||||
Expanded(
|
||||
|
||||
@@ -94,7 +94,7 @@ class _TenderDetailTabletPageState extends State<TenderDetailTabletPage> {
|
||||
key: key,
|
||||
),
|
||||
|
||||
drawer: TabletNavigationWidget(
|
||||
drawer: const TabletNavigationWidget(
|
||||
currentIndex: 1, // Home is index 0
|
||||
),
|
||||
body: Consumer<TenderDetailViewModel>(
|
||||
|
||||
@@ -21,7 +21,7 @@ class DeadlineItem extends StatelessWidget {
|
||||
Widget build(BuildContext context) {
|
||||
return isScreenBig
|
||||
? Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 0),
|
||||
padding: const EdgeInsets.symmetric(vertical: 0),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
@@ -101,7 +101,7 @@ class DeadlineItem extends StatelessWidget {
|
||||
),
|
||||
)
|
||||
: Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 0),
|
||||
padding: const EdgeInsets.symmetric(vertical: 0),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
|
||||
@@ -35,7 +35,7 @@ class _SelectMeetingTimeBottomSheetState
|
||||
padding: EdgeInsets.fromLTRB(24.0.w(), 24.0.h(), 24.0.w(), 33.0.h()),
|
||||
decoration: BoxDecoration(
|
||||
color: AppColors.backgroundColor,
|
||||
borderRadius: BorderRadius.only(
|
||||
borderRadius: const BorderRadius.only(
|
||||
topLeft: Radius.circular(16.0),
|
||||
topRight: Radius.circular(16.0),
|
||||
),
|
||||
@@ -76,7 +76,7 @@ class _SelectMeetingTimeBottomSheetState
|
||||
SizedBox(height: 8.0.h()),
|
||||
InkWell(
|
||||
onTap: () {
|
||||
CompletionOfDocumentsMobileRouteData().push(context);
|
||||
const CompletionOfDocumentsMobileRouteData().push(context);
|
||||
//context.pop();
|
||||
},
|
||||
child: Container(
|
||||
@@ -131,7 +131,7 @@ class _SelectMeetingTimeBottomSheetState
|
||||
horizontal: 10.0.w(),
|
||||
vertical: 10.0.h(),
|
||||
),
|
||||
padding: EdgeInsets.all(3),
|
||||
padding: const EdgeInsets.all(3),
|
||||
decoration: BoxDecoration(
|
||||
shape: BoxShape.circle,
|
||||
border: Border.all(
|
||||
@@ -158,7 +158,7 @@ class _SelectMeetingTimeBottomSheetState
|
||||
color: AppColors.grey80,
|
||||
),
|
||||
),
|
||||
Spacer(),
|
||||
const Spacer(),
|
||||
Text(
|
||||
time,
|
||||
style: TextStyle(
|
||||
|
||||
@@ -38,7 +38,7 @@ class TenderDetailActions extends StatelessWidget {
|
||||
color: AppColors.primary30,
|
||||
borderRadius: BorderRadius.circular(100.0),
|
||||
),
|
||||
child: Center(
|
||||
child: const Center(
|
||||
child: CircularProgressIndicator(
|
||||
color: AppColors.mainBlue,
|
||||
),
|
||||
@@ -119,7 +119,7 @@ class TenderDetailActions extends StatelessWidget {
|
||||
Row _webActions() {
|
||||
return Row(
|
||||
children: [
|
||||
Spacer(),
|
||||
const Spacer(),
|
||||
Consumer<TenderDetailViewModel>(
|
||||
builder: (context, viewModel, child) {
|
||||
return viewModel.isRejectApprovalLoading
|
||||
|
||||
@@ -49,7 +49,9 @@ class TenderDetailCard extends StatelessWidget {
|
||||
child: LinearProgressIndicator(
|
||||
value: 0.75,
|
||||
backgroundColor: AppColors.grey20,
|
||||
valueColor: AlwaysStoppedAnimation<Color>(AppColors.jellyBean),
|
||||
valueColor: const AlwaysStoppedAnimation<Color>(
|
||||
AppColors.jellyBean,
|
||||
),
|
||||
minHeight: 6.0.h(),
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user