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>
return Scaffold(
body: Container(
width: double.infinity,
decoration: const BoxDecoration( // Loading screen
gradient: LinearGradient(
colors: [Colors.grey, Colors.black],
begin: Alignment.topLeft,
end: Alignment.bottomRight
),
decoration: BoxDecoration(
color: Colors.grey.shade900,
),
child: Column(
children: [
Image.asset(
'assets/icons/frozen.png',
// Icon from: https://www.flaticon.com/free-icons/cold-water"
color: Colors.grey,
),
const SizedBox(height: 20),
const Text(
"IceMap",
style: TextStyle(
color: Colors.white70,
fontStyle: FontStyle.italic,
mainAxisAlignment: MainAxisAlignment.center,
children: [
Image.asset(
'assets/icons/frozen.png',
// Icon from: https://www.flaticon.com/free-icons/cold-water"
color: Colors.grey,
height: 300,
width: 300,
),
)
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