AccessibilitySection constructor

const AccessibilitySection({
  1. Key? key,
  2. bool accessibleNavigation = true,
  3. bool invertColors = true,
  4. bool textScalingFactor = true,
  5. bool boldText = true,
})

Create a new menu section with simulated accessibility settings.

The items can be hidden with accessibleNavigation, invertColors, textScalingFactor parameters.

Implementation

const AccessibilitySection({
  Key? key,
  this.accessibleNavigation = true,
  this.invertColors = true,
  this.textScalingFactor = true,
  this.boldText = true,
}) : super(key: key);