update dialog border radius to fit the whole app

This commit is contained in:
Filip Krawczyk 2021-10-24 22:48:04 +02:00
parent 5dbb621582
commit ae235069ba
1 changed files with 5 additions and 0 deletions

View File

@ -85,6 +85,11 @@ ThemeData _themeFactory({bool dark = false, bool amoled = false}) {
),
),
),
dialogTheme: DialogTheme(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
),
),
);
}