SolidAppBarConfig constructor

const SolidAppBarConfig({
  1. required String title,
  2. Color? backgroundColor,
  3. List<SolidAppBarAction> actions = const [],
  4. List<SolidOverflowMenuItem> overflowItems = const [],
  5. SolidVersionConfig? versionConfig,
  6. SolidThemeConfig? themeConfig,
  7. double narrowScreenThreshold = 800.0,
  8. double veryNarrowScreenThreshold = 600.0,
})

Implementation

const SolidAppBarConfig({
  required this.title,
  this.backgroundColor,
  this.actions = const [],
  this.overflowItems = const [],
  this.versionConfig,
  this.themeConfig,
  this.narrowScreenThreshold = 800.0,
  this.veryNarrowScreenThreshold = 600.0,
});