Bonjour, j'essaie d'ajouter ma page SplashScreen à mon fichier main.dart mais j'ai des problèmes pour ajouter la fonction SplashScreen() à ma page d'accueil :
Ma maison est actuellement un échafaudage. Je me demande comment je peux y inclure mon SplashScreen. J'essaie de comprendre comment modifier le Scaffold. Quelqu'un pourrait-il m'aider ? Merci beaucoup par avance.
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
State<StatefulWidget> createState() {
return MyAppState();
}
}
class MyAppState extends State<MyApp> {
int _selectedPage = 0;
final _pageOptions = [
Home(),
Category(),
Video(),
];
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Flutter Demo',
initialRoute: '/',
onGenerateRoute: RouteGenerator.generateRoute,
home: Scaffold(
body: _pageOptions[_selectedPage],
bottomNavigationBar: BottomNavigationBar(
type: BottomNavigationBarType.fixed,
currentIndex: _selectedPage,
onTap: (int index) {
setState(() {
_selectedPage = index;
});
},
items: [
BottomNavigationBarItem(
icon: Icon(Icons.home), title: Text('Home')),
BottomNavigationBarItem(
icon: Icon(Icons.format_list_bulleted), title: Text('Category')),
BottomNavigationBarItem(
icon: Icon(Icons.subscriptions), title: Text('Videos')),
]
),
)
);
}
}