flutter初級者です。
StatefulWidgetからStateを操作したく、諸々調べてみているもののうまくできないので、ご存知の方助言をいただけると助かります。
実装
実装している画面はbottomNavigationBarで選択したメニューによってappBarとbodyを切り替えるものになります。
mypage.dart
dart
1class MyPage extends StatefulWidget 2{ 3 4 _MyPageState createState()=> _MyPageState(); 5} 6 7class _MyPageState extends State<MyPage> 8{ 9 int pageIndex = 0; 10 List _appBars = [ 11 Test1AppBar(), 12 Test2AppBar() 13 ]; 14 List<Widget> _bodies = [ 15 Test1Body(), 16 Test2() 17 ]; 18 19 /** 20 * build 21 */ 22 23 Widget build(BuildContext context) 24 { 25 return new Scaffold( 26 appBar: _appBars[pageIndex].getWidget(context, _bodies[pageIndex]), 27 body: _bodies[pageIndex], 28 bottomNavigationBar: new BottomNavigationBar( 29 items: const <BottomNavigationBarItem> [ 30 BottomNavigationBarItem( 31 title: Text("テスト1") 32 ), 33 BottomNavigationBarItem( 34 title: Text("テスト2") 35 ) 36 ], 37 currentIndex: pageIndex, 38 onTap: (selectedIndex) { 39 setState(() { 40 pageIndex = selectedIndex; 41 }); 42 }, 43 ) 44 ); 45 } 46}
このページで呼び出すappBarの中に検索ボタンを置き、検索ボタンで開いたダイアログで検索条件を入力した後、bodyに当たるWidgetのstateを書き換えたいです。
test1.dart
dart
1Map _searchParameter = {}; 2 3/** 4 * appBar 5 */ 6class Test1AppBar 7{ 8 /** 9 * widgetを取得 10 */ 11 AppBar getWidget(BuildContext context, 12 Test1Body body) 13 { 14 return new AppBar( 15 title: Text("テスト1"), 16 actions: [ 17 IconButton(icon: Icon(Icons.search), 18 onPressed: () async { 19 _searchParameter = await showSearchModal(context); 20 // ここでreset()を呼びたい 21 }) 22 ] 23 ); 24 } 25} 26 27/** 28 * body 29 */ 30class Test1Body extends StatefulWidget 31{ 32 33 _Test1BodyState createState() => _Test1BodyState(); 34} 35 36/** 37 * state 38 */ 39class _Test1Body extends State<Test1Body> 40{ 41 List _list = []; 42 43 44 void didChangeDependencies() 45 { 46 getDataFromApi((response) { 47 setState(() { 48 _list = response; 49 }); 50 }); 51 super.didChangeDependencies(); 52 } 53 54 /** 55 * リセット 56 */ 57 void reset() 58 { 59 setState(() { 60 _list = []; 61 }); 62 } 63 64 /** 65 * build 66 */ 67 68 Widget build(BuildContext context) 69 { 70 return Container( 71 child: Text("test") 72 ); 73 } 74}
試したこと
こちらなどを参考に諸々試してみましたが、ダメでした。
https://www.it-swarm-ja.tech/ja/flutter/statefulwidget%E3%81%AE%E5%A4%96%E9%83%A8%E3%81%8B%E3%82%89%E3%81%AE%E7%8A%B6%E6%85%8B%E3%81%AE%E5%88%B6%E5%BE%A1/834304677/
dart
1class MessageBody extends StatefulWidget 2{ 3 // bodyのStatefulWidgetにofを実装 4 _MessageBodyState of(BuildContext context) 5 { 6 return context.findAncestorStateOfType(); 7 } 8 ... 9} 10 11class MessageAppBar 12{ 13 return AppBar( 14 actions: [ 15 IconButton(icon: Icon(Icons.search), 16 onPressed: () async { 17 _searchParameter = await showSearchModal(context); 18 // ofを呼んでみるが、nullが返された。 19 print(body.of(context)); 20 }) 21 ] 22 ); 23}
よろしくお願い致します。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。