cleared console problems
This commit is contained in:
@@ -55,8 +55,8 @@ class FilterButton extends StatelessWidget {
|
||||
child: Row(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
Icon(Icons.filter_list, color: Colors.blue),
|
||||
SizedBox(width: 8),
|
||||
const Icon(Icons.filter_list, color: Colors.blue),
|
||||
const SizedBox(width: 8),
|
||||
Text(
|
||||
YourTendersStrings.filter,
|
||||
style: TextStyle(
|
||||
|
||||
@@ -145,7 +145,7 @@ class TenderCard extends StatelessWidget {
|
||||
),
|
||||
overflow: TextOverflow.ellipsis,
|
||||
),
|
||||
Spacer(),
|
||||
const Spacer(),
|
||||
// Bottom section with location and action button
|
||||
Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
@@ -171,14 +171,14 @@ class TenderCard extends StatelessWidget {
|
||||
SizedBox(width: 8.0.w()),
|
||||
tender.countryCode != null
|
||||
? Flag(countryCode: tender.countryCode!)
|
||||
: Flag(countryCode: ''),
|
||||
: const Flag(countryCode: ''),
|
||||
],
|
||||
),
|
||||
),
|
||||
|
||||
// Self Control button
|
||||
status == TenderApprovalStatus.rejected.value
|
||||
? SizedBox.shrink()
|
||||
? const SizedBox.shrink()
|
||||
: Container(
|
||||
padding: EdgeInsets.symmetric(
|
||||
horizontal: 16.0.w(),
|
||||
|
||||
@@ -91,7 +91,7 @@ class _TendersSubmittedState extends State<TendersSubmitted> {
|
||||
child: SizedBox(
|
||||
width: 24.0.w(),
|
||||
height: 24.0.h(),
|
||||
child: CircularProgressIndicator(
|
||||
child: const CircularProgressIndicator(
|
||||
color: AppColors.secondary50,
|
||||
strokeWidth: 2,
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user