As my question says, pressing phone back button application is going back to custom splash screen rather than previous page. Any idea what would be the issue ? Following is main.dart code
void main() => runApp(new MaterialApp(
theme: ThemeData(primaryColor: Colors.red),
debugShowCheckedModeBanner: false,
home: SplashScreen(),
))
Splash screen closes after 3 seconds and app goes to login page.
Thanks in advance.
@override void initState() { // TODO: implement initState super.initState(); Timer( Duration(seconds: 3), () => Navigator.push( context, MaterialPageRoute( builder: (context) => LoginApp()))); }
– Tanveer