Started projects

This commit is contained in:
Sewmina
2022-03-12 21:51:04 +05:30
parent 707640c78d
commit 3c5e8f4f8c
6 changed files with 163 additions and 17 deletions

View File

@@ -94,10 +94,17 @@ class _SplashScreenState extends State<SplashScreen> {
padding: EdgeInsets.all(80),
child: Column(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Image(image: AssetImage('images/logo.png')),
SpinKitPouringHourGlass(color: Colors.white)
Container(),
Column(
children: [
Image(image: AssetImage('images/logo.png')),
SpinKitPouringHourGlass(color: Colors.white),
],
),
DefaultTextStyle(style: TextStyle(fontSize: 15,color: Colors.white,fontStyle: FontStyle.italic),
child: Text('If you lie to me, That means you lie to yourself\n\n -This app (2022)',))
// Text('Loading', style:TextStyle(color: Colors.grey, fontSize: 20,fontStyle: FontStyle.italic))
]));
}