GalleryDetailConfig constructor
GalleryDetailConfig({
- BaseTextStyle? appbarTitleStyle,
- BaseTextStyle? appbarActionStyle,
- Color? appbarBackgroundColor,
- AppBarConfig? appbarConfig,
- BaseTextStyle? tabBarUnSelectedLabelStyle,
- BaseTextStyle? tabBarLabelStyle,
- Color? tabBarBackgroundColor,
- Color? pageBackgroundColor,
- Color? bottomBackgroundColor,
- BaseTextStyle? titleStyle,
- BaseTextStyle? contentStyle,
- BaseTextStyle? actionStyle,
- Color? iconColor,
- String configId = GLOBAL_CONFIG_ID,
Implementation
GalleryDetailConfig({
BaseTextStyle? appbarTitleStyle,
BaseTextStyle? appbarActionStyle,
Color? appbarBackgroundColor,
phoenix.AppBarConfig? appbarConfig,
BaseTextStyle? tabBarUnSelectedLabelStyle,
BaseTextStyle? tabBarLabelStyle,
Color? tabBarBackgroundColor,
Color? pageBackgroundColor,
Color? bottomBackgroundColor,
BaseTextStyle? titleStyle,
BaseTextStyle? contentStyle,
BaseTextStyle? actionStyle,
Color? iconColor,
String configId = GLOBAL_CONFIG_ID,
}) : _appbarTitleStyle = appbarTitleStyle,
_appbarActionStyle = appbarActionStyle,
_appbarBackgroundColor = appbarBackgroundColor,
_appbarConfig = appbarConfig,
_tabBarUnSelectedLabelStyle = tabBarUnSelectedLabelStyle,
_tabBarLabelStyle = tabBarLabelStyle,
_tabBarBackgroundColor = tabBarBackgroundColor,
_pageBackgroundColor = pageBackgroundColor,
_bottomBackgroundColor = bottomBackgroundColor,
_titleStyle = titleStyle,
_contentStyle = contentStyle,
_actionStyle = actionStyle,
_iconColor = iconColor,
super(configId: configId);