neonStyle constant

SmartNavStyle const neonStyle

A neon-themed style with vibrant colors and elastic animations. Features a dark background with bright neon accent colors and pronounced animation effects.

Implementation

static const SmartNavStyle neonStyle = SmartNavStyle(
  backgroundColor: Color(0xFF101720),
  borderColor: Color(0xFF00FFAA),
  borderRadius: 18.0,
  margin: EdgeInsets.symmetric(horizontal: 20, vertical: 12),
  padding: EdgeInsets.all(6),
  defaultActiveColor: Color(0xFF00FFAA),
  defaultInactiveColor: Color(0xFFAAAAAA),
  defaultActiveTextStyle: TextStyle(
    fontSize: 13,
    fontWeight: FontWeight.w700,
    color: Color(0xFF00FFAA),
  ),
  defaultInactiveTextStyle: TextStyle(
    fontSize: 13,
    fontWeight: FontWeight.w400,
    color: Color(0xFFCCCCCC),
  ),
  defaultIconSize: 24.0,
  scaleFactor: 1.2,
  animationCurve: Curves.elasticOut,
  animationDuration: Duration(milliseconds: 400),
  showLabel: true,
);