GlassNavigationShell constructor

const GlassNavigationShell({
  1. Key? key,
  2. required Widget child,
  3. bool enabled = true,
  4. GlassEffectTransition effectTransition = GlassEffectTransition.materialize,
})

Creates a navigation shell around child.

Implementation

const GlassNavigationShell({
  super.key,
  required this.child,
  this.enabled = true,
  this.effectTransition = GlassEffectTransition.materialize,
});