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
+1 -5
View File
@@ -75,11 +75,7 @@ class _CachedSvgState extends State<CachedSvg> {
@override
Widget build(BuildContext context) {
if (_isLoading) {
return SizedBox(
width: widget.width ?? 20,
height: widget.height ?? 20,
child: const Center(child: CircularProgressIndicator()),
);
return SizedBox();
}
if (_svgData == null) {