IntroductionPage constructor

const IntroductionPage({
  1. Widget? title,
  2. Widget? text,
  3. Widget? graphic,
  4. BoxDecoration? decoration,
  5. 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,
});