customizeTabBarAppearance method

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

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