description property

String get description

Implementation

String get description {
  switch (this) {
    case DesignStyle.material:
      return 'Modern Material 3 appearance with standard Flutter Material behavior.';
    case DesignStyle.vibrant:
      return 'Bright startup-style visual language with stronger color and gradients.';
    case DesignStyle.minimalism:
      return 'Clean, restrained, typography-focused interface with generous whitespace.';
    case DesignStyle.neomorphism:
      return 'Soft extruded and inset surfaces created with paired light and dark shadows.';
    case DesignStyle.skeuomorphism:
      return 'Physical-object cues using depth, highlights, and tactile controls.';
    case DesignStyle.glassmorphism:
      return 'Translucent layered surfaces using blur, tint, borders, and highlights.';
    case DesignStyle.claymorphism:
      return 'Soft inflated shapes, large radii, and playful tactile depth.';
    case DesignStyle.maximalism:
      return 'Expressive typography, bold colors, decorative layering, and energetic hierarchy.';
    case DesignStyle.brutalism:
      return 'Hard borders, strong contrast, blocky type, and offset shadows.';
    case DesignStyle.liquidGlass:
      return 'Fluid translucent surfaces with layered blur, luminous edges, and smooth motion.';
    case DesignStyle.spatialUi:
      return 'Depth-oriented floating surfaces with layered hierarchy and spatial transitions.';
  }
}