This commit is contained in:
Hamza-Ayed
2024-05-11 02:34:32 +03:00
parent 750d980fcb
commit 34c7eea513
48 changed files with 260 additions and 222 deletions

View File

@@ -17,7 +17,7 @@ class SplashScreen extends StatelessWidget {
Widget build(BuildContext context) {
return Scaffold(
backgroundColor:
AppColor.primaryColor, // Set your desired background color
AppColor.secondaryColor, // Set your desired background color
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
@@ -32,12 +32,19 @@ class SplashScreen extends StatelessWidget {
splashScreenController.animationController.value < 0.5
? splashScreenController.zoomInAnimation.value
: splashScreenController.zoomOutAnimation.value,
child: Image.asset('assets/images/logo.png'),
child: Image.asset(
'assets/images/logo.png',
width: Get.width * .3,
height: Get.width * .3,
),
);
},
);
},
),
const SizedBox(
height: 30,
),
AnimatedTextKit(animatedTexts: [
TypewriterAnimatedText(
'Welcome to ${AppInformation.appName}',