ShowcaseShell constructor

const ShowcaseShell({
  1. Key? key,
  2. required Widget icon,
  3. required String title,
  4. String? subtitle,
  5. required Widget body,
  6. required Widget footer,
})

Creates a centered showcase page scaffold.

Implementation

const ShowcaseShell({
  super.key,
  required this.icon,
  required this.title,
  this.subtitle,
  required this.body,
  required this.footer,
});