Fluttertoastの背景色を変更したいのですが、反映されません。
・showToast
にてbackgroundColor: Colors.red
を書くだけでは、変更不可なのでしょうか?
また、エラーメッセージは表示されておりません。
Flutter
1class ItemView extends StatelessWidget { 2 final Currency v; 3 4 ItemView({this.v}) : super(); 5 6 @override 7 Widget build(BuildContext context) { 8 return InkWell( 9 onTap: () { 10 Fluttertoast.showToast( 11 msg: v.countryCode, backgroundColor: Colors.red); <<------------------ 12 13 }, 14 child: Container( .....
お時間あるときにご返信いただければ、幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/30 10:34 編集
2020/06/30 10:49