Your First Flutter App: Polishing the App

Apr 12 2022 · Dart 2.14.1, Flutter 2.5, Visual Studio Code

Part 4: Finish the App

30. Set a Launch Screen

Episode complete

Play next episode

Next
About this episode
Leave a rating/review
See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 29. Set the App Icon & Display Name Next episode: 31. Run the App on Your Device

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Notes: 30. Set a Launch Screen

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

We have our app icons in place but you’ll notice when we start our app, we get a simple white screen. This doesn’t look very good at all. A nice thing to add is a launch screen. A launch screen can show a logo or even a picture of your user interface on startup to make your app appear to launch faster.

<item>
    <bitmap
        android:gravity="center"
        android:src="@mipmap/rwdevcon_bg" />
</item>

<item>
    <bitmap
        android:gravity="center"
        android:src="@mipmap/razewarelogo_128" />
</item>