WelcomeBackground constructor

const WelcomeBackground({
  1. Key? key,
  2. required List<Widget> children,
  3. AlignmentDirectional alignment = AlignmentDirectional.bottomCenter,
  4. Clip clipBehavior = Clip.hardEdge,
  5. StackFit fit = StackFit.loose,
})

Background for the welcome.

Implementation

const WelcomeBackground({
  super.key,
  required this.children,
  this.alignment = AlignmentDirectional.bottomCenter,
  this.clipBehavior = Clip.hardEdge,
  this.fit = StackFit.loose,
});