HiddenLogo constructor
const
HiddenLogo({
- required Widget body,
- required LogoBuilder notchBuilder,
- required LogoBuilder dynamicIslandBuilder,
- LogoVisibilityMode visibilityMode = LogoVisibilityMode.always,
- bool isVisible = true,
- 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,
});