テキストより右側にアイコンを配置したいのですが、どうしても左側になってしまいます。flutter従来の仕様であれば、理想の挙動を実現するにはどうするのがよいでしょうか。回答よろしくお願いいたします。
return RaisedButton.icon( label: Text(this.title), color: Colors.white, onPressed: () { showDialog( context: context, builder: (context) { return SimpleDialog( title: Text(this.title), children: <Widget>[ for (var item in this.list) SimpleDialogOption( onPressed: () => Navigator.pop(context, 1), child: Text(item), ) ], ); } ); }, icon: Icon( Icons.expand_more, color: Colors.grey, ), );
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。