FlexAdaptive.all constructor

const FlexAdaptive.all({
  1. bool android = true,
  2. bool androidWeb = true,
  3. bool fuchsia = true,
  4. bool fuchsiaWeb = true,
  5. bool iOS = true,
  6. bool iOSWeb = true,
  7. bool linux = true,
  8. bool linuxWeb = true,
  9. bool macOS = true,
  10. bool macOSWeb = true,
  11. bool windows = true,
  12. bool windowsWeb = true,
  13. bool? overrideIsWeb,
})

The adaptive feature is used on all platforms.

Use this configuration it you want to use the adaptive feature on all platforms. This is typically used to totally remove a Material 3 design feature that does not fit your custom design goals.

Implementation

const FlexAdaptive.all({
  this.android = true,
  this.androidWeb = true,
  this.fuchsia = true,
  this.fuchsiaWeb = true,
  this.iOS = true,
  this.iOSWeb = true,
  this.linux = true,
  this.linuxWeb = true,
  this.macOS = true,
  this.macOSWeb = true,
  this.windows = true,
  this.windowsWeb = true,
  this.overrideIsWeb,
});