customizeTabBarAppearance method
Customizes the tab bar appearance
Implementation
Future<void> customizeTabBarAppearance({
String? backgroundColor,
String? selectedItemColor,
String? unselectedItemColor,
bool? translucent,
}) {
return NativeIosUiPlatform.instance.customizeTabBarAppearance(
backgroundColor: backgroundColor,
selectedItemColor: selectedItemColor,
unselectedItemColor: unselectedItemColor,
translucent: translucent,
);
}