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 body widget and displays widget built via provided functions on top of the screen where it it 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,
});