bodyのほうでは、受け取ることに成功したのですが、bottomNavigationBarの引数として、Providerで受け取りたいのですが、うまく行かなかったので質問させていただきます
flutter
1class MyPageScreen extends StatelessWidget { 2 @override 3 Widget build(BuildContext context) { 4 return ChangeNotifierProvider<MyPageChangeNotifier>( 5 create: (context) => MyPageChangeNotifier(), 6 child: Scaffold( 7 bottomNavigationBar: NavigationBar(onItemTap: ChangeNotifierProvider.value(Provider.of<MyPageChangeNotifier>(context)) 8 body: Consumer<MyPageChangeNotifier>( 9 builder: (context, value, child) { 10 return SingleChildScrollView( 11 child: Column( 12 children: <Widget>[ 13 Container( 14 color: Color(0xffF5F6F9), 15 child: Padding( 16 padding: EdgeInsets.only(top: 40.0, bottom: 60.0, right: 40.0, left: 40.0), 17 child: Column( 18 children: <Widget>[ 19 Profile(), 20 SizedBox(height: 20.0), 21 RequestStatus(), 22 ], 23 ), 24 ), 25 ), 26 Padding( 27 padding: EdgeInsets.only(top: 40.0, right: 24.0, left: 24.0, bottom: 63.0), 28 child: Column(children: <Widget>[ 29 BorderedText(text: "お知らせ"), 30 SizedBox(height: 24.0), 31 NoticeItem(text: value.text, date: value.date), 32 SizedBox(height: 20.0), 33 NoticeItem(text: value.text, date: value.date), 34 ]), 35 ), 36コード
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。