How to show splash screen in flutter for 3 seconds and then go next my login screen.
I have tried.countdowntimer but import is unresolved
import \'pack
I think you need to clear the old activity from stack (Splash Screen), So you have to use pushNamedAndRemoveUntil instead of using pushNamed only.
pushNamed
new Future.delayed(const Duration(seconds: 3), () { Navigator.pushNamedAndRemoveUntil(context, '/login', ModalRoute.withName('/')); });