CupertinoQueryField constructor

const CupertinoQueryField({
  1. Key? key,
  2. List<Widget>? leading,
  3. List<Widget>? trailing,
  4. Decoration? decoration,
  5. BoxDecoration? inputDecoration,
  6. EdgeInsets? padding,
  7. EdgeInsets? margin,
  8. CupertinoThemeData? theme,
  9. FocusNode? focusNode,
  10. VoidCallback? onDismissed,
  11. ValueChanged<String>? onChanged,
  12. TextEditingController? textController,
  13. String? hintText,
  14. TextStyle? style,
  15. TextStyle? hintStyle,
  16. String? dismissText,
  17. Duration duration = _defaultDuration,
  18. QueryFieldSemanticsLocalizations? semanticsLocalization,
  19. QueryFieldStringsLocalizations? strings,
  20. Icon? clearIcon,
})

Implementation

const CupertinoQueryField(
    {Key? key,
    this.leading,
    this.trailing,
    this.decoration,
    this.inputDecoration,
    this.padding,
    this.margin,
    this.theme,
    this.focusNode,
    this.onDismissed,
    this.onChanged,
    this.textController,
    this.hintText,
    this.style,
    this.hintStyle,
    this.dismissText,
    this.duration = _defaultDuration,
    this.semanticsLocalization,
    this.strings,
    this.clearIcon})
    : super(key: key);