前提・実現したいこと
FlutterのRaisedButtonのOnpressedが機能せず困っています。
popupを表示させたい。
発生している問題・エラーメッセージ
次へボタンを押してもpopupが表示されない
### 該当のソースコード ++main.dart++ class TalkGroupAppBar extends StatelessWidget with PreferredSizeWidget { @override Widget build(BuildContext context) { return AppBar( elevation: 0.0, automaticallyImplyLeading: true, title: Text('グループを作成'), centerTitle: true, leading: GestureDetector( child: IconButton( icon: Icon(Icons.arrow_back), onPressed: () => Navigator.of(context).pushNamed("/login"), color: ColorsConfig.getArrowBackColor(), ), ), actions:<Widget>[ GestureDetector( child: RaisedButton( elevation: 0.0, color: ColorsConfig.getThemeColor(), child: Text( "次へ", ), onPressed: () => TextFieldAlertDialog(), // print('================テキストダイアログ============'), ), ), ], backgroundColor: ColorsConfig.getThemeColor(), ); } @override Size get preferredSize => Size.fromHeight(kToolbarHeight); } ++dialog.dart++ class TextFieldAlertDialog extends StatelessWidget { final TextEditingController _textFieldController = TextEditingController(); _displayDialog(BuildContext context) async { return showDialog( context: context, builder: (context) { return AlertDialog( title: Text('グループ作成'), content: TextField( controller: _textFieldController, decoration: InputDecoration(hintText: "作成するグループ名を入力する"), ), actions: <Widget>[ new FlatButton( color: ColorsConfig.getThemeColor(), child: new Text('作成する'), onPressed: () { Navigator.of(context).pop(); }, ) ], ); }); } @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text('グループ作成'), ), body: Center( child: RaisedButton( child: Text('作成するグループ名を入力してください。'), color: ColorsConfig.getThemeColor(), onPressed: () => _displayDialog(context), ), ), ); } } ```Dart,Flutter 試行錯誤しましたが、自身の力不足により解決できませんでした。。 import系は全て入っている前提です。 お力添えいただけますと幸いです。何卒よろしくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。