Skip to content

Commit

Permalink
πŸ”€ Merge pull request #14 from Giuliopime/patch-1
Browse files Browse the repository at this point in the history
fix: installSplashScreen() should be called before onCreate()
  • Loading branch information
vinceglb committed May 1, 2023
2 parents a7b969c + a4d1d06 commit c9f7ef0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/com/ebf/instant/ui/MainActivity.kt
Expand Up @@ -15,8 +15,8 @@ import com.google.accompanist.systemuicontroller.rememberSystemUiController

class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
installSplashScreen()
super.onCreate(savedInstanceState)
setContent {
InstantTheme {

Expand Down

0 comments on commit c9f7ef0

Please sign in to comment.