Commit 1d7268c6 authored by Timothe's avatar Timothe

mercredi 9h14 -6 ça fait pi

parent 555f9f42
...@@ -27,6 +27,7 @@ class MyApp extends StatelessWidget { ...@@ -27,6 +27,7 @@ class MyApp extends StatelessWidget {
} }
} }
class MyAppState extends ChangeNotifier { class MyAppState extends ChangeNotifier {
var current = WordPair.random(); var current = WordPair.random();
...@@ -53,44 +54,60 @@ class MyHomePage extends StatefulWidget { ...@@ -53,44 +54,60 @@ class MyHomePage extends StatefulWidget {
State<MyHomePage> createState() => _MyHomePageState(); State<MyHomePage> createState() => _MyHomePageState();
} }
class _MyHomePag State extends State<MyHomePage> { class _MyHomePageState extends State<MyHomePage> {
var selectedIndex = 0; var selectedIndex = 0;
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( Widget page;
body: Row( switch (selectedIndex) {
children: [ case 0:
SafeArea( page = GeneratorPage();
child: NavigationRail( break;
extended: false, case 1:
destinations: [ page = FavoritePage();
NavigationRailDestination( break;
icon: Icon(Icons.home), default:
label: Text('Home'), throw UnimplementedError('no widget for $selectedIndex');
}
return LayoutBuilder(
builder: (context,constraints) {
return Scaffold(
body: Row(
children: [
SafeArea(
child: NavigationRail(
extended: constraints.maxWidth>=600,
destinations: [
NavigationRailDestination(
icon: Icon(Icons.home),
label: Text('Home'),
),
NavigationRailDestination(
icon: Icon(Icons.favorite),
label: Text('Favorites'),
),
],
selectedIndex: selectedIndex,
onDestinationSelected: (value) {
print('selected: $value');
setState(() {
selectedIndex = value;
});
},
), ),
NavigationRailDestination( ),
icon: Icon(Icons.favorite), Expanded(
label: Text('Favorites'), child: Container(
color: Theme.of(context).colorScheme.primaryContainer,
child: page,
), ),
], ),
selectedIndex: selectedIndex, ],
onDestinationSelected: (value) {
print('selected: $value');
setState(() {
selectedIndex = value;
});
},
),
),
Expanded(
child: Container(
color: Theme.of(context).colorScheme.primaryContainer,
child: GeneratorPage(),
),
), ),
], );
), }
); );
} }
} }
...@@ -170,3 +187,26 @@ class BigCard extends StatelessWidget { ...@@ -170,3 +187,26 @@ class BigCard extends StatelessWidget {
} }
} }
class FavoritePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
var appState = context.watch<MyAppState>();
var favorites = appState.favorites;
return Scaffold(
body: Column(children: [
Text('Favorites'),
for (var fav in favorites)
Text(fav.asLowerCase),
],)
);
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment