zinc property
The Zinc theme.
Implementation
static final zinc = (
light: FPlatformThemeData(
desktop: () => FThemeData(touch: false, debugLabel: 'Zinc Light Desktop', colors: FColors.zincLight),
touch: () => FThemeData(touch: true, debugLabel: 'Zinc Light Touch', colors: FColors.zincLight),
),
dark: FPlatformThemeData(
desktop: () => FThemeData(touch: false, debugLabel: 'Zinc Dark Desktop', colors: FColors.zincDark),
touch: () => FThemeData(touch: true, debugLabel: 'Zinc Dark Touch', colors: FColors.zincDark),
),
);