customizeTabBarAppearance method

Future<void> customizeTabBarAppearance({
  1. String? backgroundColor,
  2. String? selectedItemColor,
  3. String? unselectedItemColor,
  4. bool? translucent,
})

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,
  );
}