flutter_splash_screen icon indicating copy to clipboard operation
flutter_splash_screen copied to clipboard

Adding .extension delay when screen showing

Open Ashwagandha-coder opened this issue 3 months ago • 0 comments

Need create function in the singleton, or .extension function for delaying splash screen. For both platform.

for example:

fun SplashScreen.delayScreen(duration: Long, scope: CoroutineScope) {
    var shouldKeepOnScreenCondition = false
    setKeepOnScreenCondition { shouldKeepOnScreenCondition }
    scope.launch {
        delay(duration)
        shouldKeepOnScreenCondition = true
    }
}

Ashwagandha-coder avatar Nov 12 '25 10:11 Ashwagandha-coder