PandaBar constructor
const
PandaBar({
- Key? key,
- required List<
PandaBarButtonData> buttonData, - required dynamic onChange(
- dynamic selectedPage
- Color? backgroundColor,
- Widget? fabIcon,
- List<
Color> ? fabColors, - VoidCallback? onFabButtonPressed,
- Color? buttonColor,
- Color? buttonSelectedColor,
Implementation
const PandaBar({
Key? key,
required this.buttonData,
required this.onChange,
this.backgroundColor,
this.fabIcon,
this.fabColors,
this.onFabButtonPressed,
this.buttonColor,
this.buttonSelectedColor,
}) : super(key: key);