UAdminScaffold constructor

const UAdminScaffold({
  1. required String title,
  2. required Widget body,
  3. Key? key,
  4. VoidCallback? onFilter,
  5. VoidCallback? onCreate,
  6. List<Widget>? extraActions,
  7. RxInt? pageNumber,
  8. RxInt? totalPages,
  9. ValueChanged<int>? onPageChanged,
  10. Widget? floatingActionButton,
})

Implementation

const UAdminScaffold({
  required this.title,
  required this.body,
  super.key,
  this.onFilter,
  this.onCreate,
  this.extraActions,
  this.pageNumber,
  this.totalPages,
  this.onPageChanged,
  this.floatingActionButton,
});