FormStandardLayout constructor

const FormStandardLayout({
  1. required String title,
  2. required Widget content,
  3. required Widget actionButton,
  4. Widget? bottomText,
  5. Key? key,
})

Creates a FormStandardLayout widget.

Implementation

const FormStandardLayout({
  required this.title,
  required this.content,
  required this.actionButton,
  this.bottomText,
  super.key,
});