IntroductionPage constructor
- Widget? title,
- Widget? text,
- Widget? graphic,
- BoxDecoration? decoration,
- IntroductionLayoutStyle? layoutStyle,
Creates an introduction page with data used in the introduction screen for each page.
The values for title and text are optional in this, but will use a default translation key when built.
The background
is fully optional and if not provided will show the
ThemeData.colorScheme.background
as default.
Implementation
const IntroductionPage({
this.title,
this.text,
this.graphic,
this.decoration,
this.layoutStyle,
});