SimpleBottomAppBar constructor

const SimpleBottomAppBar({
  1. Key? key,
  2. BarButton? button01,
  3. BarButton? button02,
  4. BarButton? button03,
  5. BarButton? button04,
})

Optionally supply up to four Bottom Bar buttons to be displayed.

Implementation

const SimpleBottomAppBar({
  super.key,
  this.button01,
  this.button02,
  this.button03,
  this.button04,
});