NavigationControlsStyle constructor

NavigationControlsStyle({
  1. EdgeInsets padding = const EdgeInsets.all(8.0),
  2. BoxDecoration? decoration,
  3. double iconSize = 24.0,
  4. Color enabledIconColor = Colors.black87,
  5. Color disabledIconColor = Colors.grey,
  6. Color positionIndicatorColor = const Color(0xFFE0E0E0),
  7. 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,
  ),
});