initial commit

This commit is contained in:
2024-02-05 11:18:08 +07:00
parent 5fe37558a8
commit 5ee2b8f1f1
112 changed files with 3581 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import 'package:cims_apps/core/route/base_route.dart';
import 'package:cims_apps/features/splash_screen.dart';
class InitialRoute {
static List<BaseRoute> listRoute = [
BaseRoute(routeName: SplashScreen.routeName, clazz: const SplashScreen()),
];
}