前提・実現したいこと
PopupMenuButton Widgetを使用して、
項目別に画面遷移やダイアログを表示させたい。
##ここに質問の内容を詳しく書いてください。
現在、flutter Dartにてアプリを開発しており、
当該Widgetを実装したものの、項目別に機能させることができておりません。
項目は
・グループ名を編集する => ダイアログ形式で画面遷移せず表示したい
・メンバーを追加する => メンバー追加画面に飛ばしたい
上記2点であり、下記コードにより画面遷移しか出来ない仕様になっております。
該当のソースコード
flutter
1ソースコード 2class TalkScreenAppBar extends StatefulWidget with PreferredSizeWidget { 3 @override 4 _TalkScreenAppBarState createState() => _TalkScreenAppBarState(); 5 6 @override 7 Size get preferredSize => Size.fromHeight(kToolbarHeight); 8} 9 10class _TalkScreenAppBarState extends State<TalkScreenAppBar> { 11 Choice _selectedChoice = choices[0]; // The app's "state". 12 13 void _select(Choice choice) { 14 15 } 16 17 @override 18 Widget build(BuildContext context) { 19 final TalkGroupEntity _talkGroupEntity = ModalRoute.of(context).settings.arguments; 20 return AppBar( 21 backgroundColor: ColorsConfig.getThemeColor(), 22 title: Text(_talkGroupEntity.groupName), 23 centerTitle: true, 24 elevation: 0.0, 25 actions: <Widget>[ 26 // overflow menu 27 PopupMenuButton<Choice>( 28 elevation: 4.2, 29 // initialValue: choices[0], 30 onCanceled: () { 31 print('You have not chossed anything'); 32 }, 33 tooltip: 'メニューを開く', 34 onSelected: _select, 35 itemBuilder: (BuildContext context) { 36 return choices.map((Choice choice) { 37 return PopupMenuItem<Choice>( 38 value: choice, 39 child: InkWell( 40 onTap: (){Navigator.of(context).pushNamed('/talk_group_make_screen'); 41 }, 42 child: Text(choice.title)), 43 ); 44 }).toList(); 45 }, 46 ) 47 ], 48 ); 49 } 50} 51 52class Choice { 53 const Choice({this.title, this.icon}); 54 55 final String title; 56 final IconData icon; 57} 58 59 List<Choice> choices = const <Choice>[ 60 Choice(title: 'グループ名を編集', icon: Icons.directions_car), 61 Choice(title: 'メンバーを追加する', icon: Icons.directions_bike), 62];
試したこと
InkWell Widgetを使用して画面遷移を実装したが、全項目が同じ機能を果たしてしまう。
知識、技量不足による質問になります。
大変お手数をおかけしますがお力添えいただけますと幸いです。
何卒宜しくお願い申し上げます。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。