NicePageScaffold constructor

const NicePageScaffold({
  1. Key? key,
  2. required String title,
  3. required Widget body,
  4. List<Widget> actions = const [],
  5. Widget? floatingActionButton,
  6. bool showBackButton = true,
  7. EdgeInsets padding = const EdgeInsets.all(16),
})

Implementation

const NicePageScaffold({
  super.key,
  required this.title,
  required this.body,
  this.actions = const [],
  this.floatingActionButton,
  this.showBackButton = true,
  this.padding = const EdgeInsets.all(16),
});