fix: ip flag

This commit is contained in:
Hiddify
2024-03-08 15:59:06 +01:00
parent 4118863a20
commit ce4a7ad918
4 changed files with 13 additions and 7 deletions

View File

@@ -131,7 +131,9 @@ class IPCountryFlag extends HookConsumerWidget {
width: size,
height: size,
padding: const EdgeInsets.all(2),
child: Center(child: CircleFlag(countryCode)),
child: Center(
child: CircleFlag(countryCode == "ir" ? "ir-shir" : countryCode),
),
),
);
}