Skip to content
Snippets Groups Projects
Commit 049b9920 authored by Sara Savanovic Djordjevic's avatar Sara Savanovic Djordjevic
Browse files

fix: loading screen appearance

parent 8371a67c
No related branches found
No related tags found
1 merge request!10Clhp map
...@@ -47,28 +47,28 @@ class _LoadingPageState extends State<LoadingPage> ...@@ -47,28 +47,28 @@ class _LoadingPageState extends State<LoadingPage>
return Scaffold( return Scaffold(
body: Container( body: Container(
width: double.infinity, width: double.infinity,
decoration: const BoxDecoration( // Loading screen decoration: BoxDecoration(
gradient: LinearGradient( color: Colors.grey.shade900,
colors: [Colors.grey, Colors.black],
begin: Alignment.topLeft,
end: Alignment.bottomRight
),
), ),
child: Column( child: Column(
children: [ mainAxisAlignment: MainAxisAlignment.center,
Image.asset( children: [
'assets/icons/frozen.png', Image.asset(
// Icon from: https://www.flaticon.com/free-icons/cold-water" 'assets/icons/frozen.png',
color: Colors.grey, // Icon from: https://www.flaticon.com/free-icons/cold-water"
), color: Colors.grey,
const SizedBox(height: 20), height: 300,
const Text( width: 300,
"IceMap",
style: TextStyle(
color: Colors.white70,
fontStyle: FontStyle.italic,
), ),
) const SizedBox(height: 20),
const Text(
"IceMap",
style: TextStyle(
color: Colors.white70,
fontStyle: FontStyle.italic,
fontSize: 30,
),
)
] ]
), ),
), ),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment