show eu flag if it is empty

This commit is contained in:
amirrezaghabeli
2025-09-14 11:52:59 +03:30
parent 578c933369
commit 7462d71b33
7 changed files with 29 additions and 27 deletions
@@ -48,8 +48,9 @@ class TenderLocationSection extends StatelessWidget {
),
),
SizedBox(width: 4.0.w()),
if (detail.countryCode != null)
Flag(countryCode: detail.countryCode!),
detail.countryCode != null
? Flag(countryCode: detail.countryCode!)
: const Flag(countryCode: ''),
],
),
SizedBox(height: 8.0.h()),