NavigationControlsStyle constructor
NavigationControlsStyle({
- EdgeInsets padding = const EdgeInsets.all(8.0),
- BoxDecoration? decoration,
- double iconSize = 24.0,
- Color enabledIconColor = Colors.black87,
- Color disabledIconColor = Colors.grey,
- Color positionIndicatorColor = const Color(0xFFE0E0E0),
- TextStyle positionTextStyle = const TextStyle(fontSize: 12, fontWeight: FontWeight.w500),
Implementation
NavigationControlsStyle({
this.padding = const EdgeInsets.all(8.0),
this.decoration,
this.iconSize = 24.0,
this.enabledIconColor = Colors.black87,
this.disabledIconColor = Colors.grey,
this.positionIndicatorColor = const Color(0xFFE0E0E0),
this.positionTextStyle = const TextStyle(
fontSize: 12,
fontWeight: FontWeight.w500,
),
});