NiceResponsiveVisibility constructor

const NiceResponsiveVisibility({
  1. Key? key,
  2. required Widget child,
  3. bool visibleXs = true,
  4. bool visibleSm = true,
  5. bool visibleMd = true,
  6. bool visibleLg = true,
  7. bool visibleXl = true,
  8. bool visibleXxl = true,
  9. Widget? replacement,
})

Implementation

const NiceResponsiveVisibility({
  super.key,
  required this.child,
  this.visibleXs = true,
  this.visibleSm = true,
  this.visibleMd = true,
  this.visibleLg = true,
  this.visibleXl = true,
  this.visibleXxl = true,
  this.replacement,
});