ArnaSideScaffold constructor

const ArnaSideScaffold({
  1. Key? key,
  2. Widget? headerBarLeading,
  3. String? title,
  4. Widget? headerBarMiddle,
  5. List<ArnaHeaderBarItem>? actions,
  6. Widget? leading,
  7. required List<NavigationItem> items,
  8. Widget? trailing,
  9. ValueChanged<int>? onItemSelected,
  10. int currentIndex = 0,
  11. bool resizeToAvoidBottomInset = true,
})

Creates a side view structure in the Arna style.

Implementation

const ArnaSideScaffold({
  super.key,
  this.headerBarLeading,
  this.title,
  this.headerBarMiddle,
  this.actions,
  this.leading,
  required this.items,
  this.trailing,
  this.onItemSelected,
  this.currentIndex = 0,
  this.resizeToAvoidBottomInset = true,
});