😳
[Flutter] FlatButton.icon is deprecated
問題
2021年5月の時点で、flutterのFlatButton
クラスは非推奨になりました。
代わりにTextButton
クラスを使用する必要があります。
解決策
非推奨の場合は、代わりのクラスを使用する必要があります。
置き換えられた、クラスの一覧。
FlatButton → TextButton
RaisedButton → ElecatedButton
OutlineButton → OutlinedButton
ButtonTheme → TextButtonTheme、ElevatedButtonTheme、OutlineButtonTheme
参考
Discussion