Alert Dialog with Rounded corners in flutter

前端 未结 8 1873
渐次进展
渐次进展 2020-12-23 13:30

I am trying to create an alert dialog with rounded corners in Flutter same as below screenshot. also add my code here, but my output is exactly different from the expected o

8条回答
  •  半阙折子戏
    2020-12-23 13:46

    Try this code

    showDialog(
            context: context,
            builder: (BuildContext context) {
              return AlertDialog(
                shape: RoundedRectangleBorder(
                         borderRadius: BorderRadius.circular(10.0),
                       ),
                title: Text('title'),
                content: Text('content'),
              );
            },
          );
    

提交回复
热议问题