BASE: Create AppRouter Util.

This commit is contained in:
2025-12-04 15:20:19 +05:00
parent 841cdf8c21
commit 157545f1c0
11 changed files with 580 additions and 298 deletions

View File

@@ -9,12 +9,16 @@ class SplashScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return GetBuilder<SplashController>(
init: SplashController(),
init: SplashController(context: context),
builder: (controller) {
return Scaffold(
backgroundColor: AppThemeData.mainColor,
body: Center(
child: Image.asset("assets/images/fondex_logo_main.png", width: 120, height: 120),
child: Image.asset(
"assets/images/fondex_logo_main.png",
width: 120,
height: 120,
),
),
);
},