HiddenLogo constructor

const HiddenLogo({
  1. required Widget body,
  2. required LogoBuilder notchBuilder,
  3. required LogoBuilder dynamicIslandBuilder,
  4. LogoVisibilityMode visibilityMode = LogoVisibilityMode.always,
  5. bool isVisible = true,
  6. Key? key,
})

Hidden Logo widget wrapper. It wraps the body widget and displays a widget built via the provided functions at the top of the screen where it is not visible under the physical hardware barrier.

Implementation

const HiddenLogo({
  required this.body,
  required this.notchBuilder,
  required this.dynamicIslandBuilder,
  this.visibilityMode = LogoVisibilityMode.always,
  this.isVisible = true,
  super.key,
});