GalleryDetailConfig constructor

GalleryDetailConfig({
  1. BaseTextStyle? appbarTitleStyle,
  2. BaseTextStyle? appbarActionStyle,
  3. Color? appbarBackgroundColor,
  4. AppBarConfig? appbarConfig,
  5. BaseTextStyle? tabBarUnSelectedLabelStyle,
  6. BaseTextStyle? tabBarLabelStyle,
  7. Color? tabBarBackgroundColor,
  8. Color? pageBackgroundColor,
  9. Color? bottomBackgroundColor,
  10. BaseTextStyle? titleStyle,
  11. BaseTextStyle? contentStyle,
  12. BaseTextStyle? actionStyle,
  13. Color? iconColor,
  14. 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);