Fix issue with menu icon corners not being rounded consistently

This commit is contained in:
Shawn 2023-10-04 09:44:07 -06:00
parent ef7b99c992
commit 4d5347013c

View File

@ -184,7 +184,7 @@ class _HomeMenuState extends State<HomeMenu> {
onPressed: () => _handleWonderPressed(context, btnData),
padding: EdgeInsets.zero,
semanticLabel: btnData.title,
child: Image.asset(btnData.type.homeBtn, fit: BoxFit.cover),
child: SizedBox.expand(child: Image.asset(btnData.type.homeBtn, fit: BoxFit.cover)),
),
),
);