icon size relative to screensize

main
Julian Gegner 2023-03-05 17:49:12 +01:00
parent aaab126ec8
commit 669e7032c1
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class RoundAddButton extends StatelessWidget {
child: Icon( child: Icon(
Icons.add_outlined, Icons.add_outlined,
color: Colors.white, color: Colors.white,
size: MediaQuery.of(context).size.height * 0.5, size: MediaQuery.of(context).size.height * 0.05,
), ),
); );
} }