TabbedViewThemeData.minimalist constructor

TabbedViewThemeData.minimalist({
  1. MaterialColor colorSet = Colors.grey,
})

Builds the predefined minimalist theme.

Implementation

factory TabbedViewThemeData.minimalist(
    {MaterialColor colorSet = Colors.grey}) {
  return MinimalistTheme.build(colorSet: colorSet);
}