FlutstrapVisibility constructor

const FlutstrapVisibility({
  1. Key? key,
  2. required Widget child,
  3. bool showOnXs = true,
  4. bool showOnSm = true,
  5. bool showOnMd = true,
  6. bool showOnLg = true,
  7. bool showOnXl = true,
  8. bool showOnXxl = true,
  9. Widget? fallback,
})

Implementation

const FlutstrapVisibility({
  super.key,
  required this.child,
  this.showOnXs = true,
  this.showOnSm = true,
  this.showOnMd = true,
  this.showOnLg = true,
  this.showOnXl = true,
  this.showOnXxl = true,
  this.fallback,
});