customizeTabBarAppearance method
Customizes the tab bar appearance
Implementation
@override
Future<void> customizeTabBarAppearance({
String? backgroundColor,
String? selectedItemColor,
String? unselectedItemColor,
bool? translucent,
}) async {
await methodChannel.invokeMethod('customizeTabBarAppearance', {
'backgroundColor': backgroundColor,
'selectedItemColor': selectedItemColor,
'unselectedItemColor': unselectedItemColor,
'translucent': translucent,
});
}