feat : update gradle

This commit is contained in:
2025-05-10 12:16:27 +03:30
parent ea2ae0f18f
commit 399eb9a527
13 changed files with 998 additions and 44 deletions

View File

@@ -0,0 +1,20 @@
import 'package:get/get.dart';
import 'package:inspection/presentation/routes/app_pages.dart';
import 'package:rasadyar_app/presentation/pages/auth/auth_with_use_and_pass/logic.dart';
import 'package:rasadyar_app/presentation/pages/auth/auth_with_use_and_pass/view.dart';
import 'package:rasadyar_app/presentation/pages/splash/logic.dart';
import 'package:rasadyar_app/presentation/pages/splash/view.dart';
import 'package:rasadyar_app/presentation/pages/system_design/system_design.dart';
part 'app_paths.dart';
sealed class AppPages {
AppPages._();
static const String initRoutes = AppPaths.splash;
static const String initDesignSystem = AppPaths.systemDesignPage;
static List<GetPage> pages = [
];
}