FloatingAssistiveButton constructor
const
FloatingAssistiveButton({
- Key? key,
- Color backgroundColor = Colors.black,
- double? backgroundOpacity,
- required dynamic onItemSelected(),
- double borderRadius = 29,
- required Color primaryColor,
- required List<
IconData> children, - bool showTabName = false,
- List<
String> ? textList, - TextStyle? titleStyle,
- required IconData primaryIcon,
Implementation
const FloatingAssistiveButton({
Key? key,
this.backgroundColor = Colors.black,
this.backgroundOpacity,
required this.onItemSelected,
this.borderRadius = 29,
required this.primaryColor,
required this.children,
this.showTabName = false,
this.textList,
this.titleStyle,
required this.primaryIcon,
}) : super(key: key);