How to style AlertDialog Actions in Flutter

后端 未结 6 885
抹茶落季
抹茶落季 2020-12-08 14:55

I use this method to show a AlertDialog:

_onSubmit(message) {
    if (message.isNotEmpty) {
      showDialog(
        context: context,
        barrierDismis         


        
6条回答
  •  臣服心动
    2020-12-08 15:39

    Changing the theme is a good option.

    MaterialApp(
      theme: ThemeData(
          buttonBarTheme: ButtonBarThemeData(
        alignment: MainAxisAlignment.center,
      )),
      ...
    

提交回复
热议问题