radio button theme

hmxc
小赖 4 years ago
parent a8372149c1
commit cc6fefb4a8

@ -40,6 +40,12 @@ class AppTheme {
type: BottomNavigationBarType.fixed, type: BottomNavigationBarType.fixed,
unselectedLabelStyle: TextStyle(), unselectedLabelStyle: TextStyle(),
), ),
radioTheme: RadioThemeData(
fillColor: MaterialStateProperty.resolveWith<Color>((states) {
if (states.contains(MaterialState.selected)) return Color(0xFFFFD000);
return null;
}),
),
); );
} }
} }

Loading…
Cancel
Save