MaterialBrowserBottomBar constructor

const MaterialBrowserBottomBar({
  1. Key? key,
  2. List<Widget>? leadingButtons,
  3. List<Widget>? trailingButtons,
  4. EdgeInsets buttonPadding = const EdgeInsets.symmetric(horizontal: 10, vertical: 3),
})

Implementation

const MaterialBrowserBottomBar({
  super.key,
  this.leadingButtons,
  this.trailingButtons,
  this.buttonPadding = const EdgeInsets.symmetric(
    horizontal: 10,
    vertical: 3,
  ),
});