How to change AlertDialog Border Radius in Flutter
Tweaking border-radius helps us to create rounded corners. UI elements with rounded corners always look beautiful. In this Flutter tutorial, let’s learn how to change the border radius of AlertDialog. Following is the default border radius of AlertDialog in Flutter. You can change the border radius using the shape property and the RoundedRectangleBorder class. See…