Skip to content

Commit 333142b

Browse files
committed
added the thing that does the spin
1 parent 69fbaee commit 333142b

File tree

12 files changed

+15
-9
lines changed

12 files changed

+15
-9
lines changed
Binary file not shown.
Binary file not shown.
1 Byte
Binary file not shown.
17 Bytes
Binary file not shown.

.gradle/6.8/gc.properties

Whitespace-only changes.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#Fri Oct 22 17:59:10 TRT 2021
2+
gradle.version=6.8

.gradle/checksums/checksums.lock

17 Bytes
Binary file not shown.

.gradle/configuration-cache/gc.properties

Whitespace-only changes.

.gradle/vcs-1/gc.properties

Whitespace-only changes.

android/app/src/main/AndroidManifest.xml

-4
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@
2424
screen fades out. A splash screen is useful to avoid any visual
2525
gap between the end of Android's launch screen and the painting of
2626
Flutter's first frame. -->
27-
<meta-data
28-
android:name="io.flutter.embedding.android.SplashScreenDrawable"
29-
android:resource="@drawable/launch_background"
30-
/>
3127
<intent-filter>
3228
<action android:name="android.intent.action.MAIN"/>
3329
<category android:name="android.intent.category.LAUNCHER"/>

lib/main.dart

+13-5
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,21 @@ class _MyAppState extends State<MyApp> {
4949
}
5050

5151
// Otherwise, show something whilst waiting for initialization to complete
52-
return Container(
52+
return Container(
5353
color: Colors.white,
5454
child: Center(
55-
child: Hero(
56-
tag: "harmony_logo",
57-
child: Image.asset("assets/images/harmony.png")
58-
),
55+
child: Column(
56+
children: [
57+
Hero(
58+
tag: "harmony_logo",
59+
child: Image.asset("assets/images/harmony.png")
60+
),
61+
const Padding(
62+
padding: EdgeInsets.only(top: 20),
63+
child: CircularProgressIndicator(),
64+
)
65+
],
66+
)
5967
),
6068
);
6169
},

0 commit comments

Comments
 (0)