😳

[Flutter] FlatButton.icon is deprecated

2022/01/22に公開

問題

2021年5月の時点で、flutterのFlatButtonクラスは非推奨になりました。
代わりにTextButtonクラスを使用する必要があります。

解決策

非推奨の場合は、代わりのクラスを使用する必要があります。
置き換えられた、クラスの一覧。

FlatButtonTextButton
RaisedButtonElecatedButton
OutlineButtonOutlinedButton
ButtonThemeTextButtonThemeElevatedButtonThemeOutlineButtonTheme

参考

https://stackoverflow.com/questions/49442247/round-button-with-text-and-icon-in-flutter
https://www.geeksforgeeks.org/flatbutton-widget-in-flutter/

Discussion