AppFrame constructor

const AppFrame({
  1. Key? key,
  2. required Widget body,
  3. String? title,
  4. Widget? floatingActionButton,
  5. dynamic action()?,
  6. bool showBackButton = false,
  7. bool showAppMenu = true,
})

Implementation

const AppFrame({
  super.key,
  required this.body,
  this.title,
  this.floatingActionButton,
  this.action,
  this.showBackButton = false,
  this.showAppMenu = true,
});