AppBarSearchButton constructor
const
AppBarSearchButton({
- Key? key,
- String toolTipLastText = 'Last input text: ',
- String toolTipStartText = 'Click here to start search',
- bool buttonHasTwoStates = true,
- bool changeOnlyOnSubmit = false,
- IconData searchIcon = Icons.search,
- IconData searchActiveIcon = Icons.search_off,
- Color searchActiveButtonColor = Colors.redAccent,
Implementation
const AppBarSearchButton({
Key? key,
this.toolTipLastText = 'Last input text: ',
this.toolTipStartText = 'Click here to start search',
this.buttonHasTwoStates = true,
this.changeOnlyOnSubmit = false,
this.searchIcon = Icons.search,
this.searchActiveIcon = Icons.search_off,
this.searchActiveButtonColor = Colors.redAccent,
}) : super(key: key);