cleared console problems

This commit is contained in:
amirrezaghabeli
2025-09-16 08:36:03 +03:30
parent b6a3598cbf
commit c421f85c95
67 changed files with 236 additions and 196 deletions
@@ -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,
),