MaterialQueryField constructor
const
MaterialQueryField({
- Key? key,
- ThemeData? theme,
- List<
Widget> ? leading, - List<
Widget> ? trailing, - Decoration? decoration,
- EdgeInsets? padding,
- EdgeInsets? margin,
- FocusNode? focusNode,
- TextEditingController? textController,
- VoidCallback? onDismissed,
- ValueChanged<
String> ? onChanged, - String? hintText,
- TextStyle? style,
- TextStyle? hintStyle,
- InputDecoration? inputDecoration,
- QueryFieldSemanticsLocalizations? semanticLocalization,
- QueryFieldStringsLocalizations? strings,
- Icon? dismissIcon,
- Icon? clearIcon,
Implementation
const MaterialQueryField(
{Key? key,
this.theme,
List<Widget>? leading,
List<Widget>? trailing,
Decoration? decoration,
EdgeInsets? padding,
EdgeInsets? margin,
this.focusNode,
this.textController,
this.onDismissed,
this.onChanged,
this.hintText,
this.style,
this.hintStyle,
this.inputDecoration,
this.semanticLocalization,
this.strings,
this.dismissIcon,
this.clearIcon})
: super(
key: key,
leading: leading,
trailing: trailing,
decoration: decoration,
padding: padding,
margin: margin);