BASE: Update Icons & Name Of The App.

This commit is contained in:
2025-12-04 10:23:59 +05:00
parent b04050384d
commit e602782edd
228 changed files with 34364 additions and 7905 deletions

View File

@@ -1,7 +1,7 @@
// Flutter Packages
import 'package:easy_localization/easy_localization.dart';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:get/get.dart' hide Trans;
/// A [Widget] to show when there is no data to display.
class EmptyScreen extends StatelessWidget {
@@ -10,8 +10,6 @@ class EmptyScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Center(
child: Text('Nothing found here...'.tr()),
);
return Center(child: Text('Nothing found here...'.tr()));
}
}