GrxTextField class
- Inheritance
-
- Object
- DiagnosticableTree
- Widget
- StatefulWidget
- TextField
- GrxTextField
Constructors
-
GrxTextField({Key? key, bool readOnly = false, TextInputType? keyboardType, bool obscureText = false, ValueChanged<
String> ? onSubmitted, FocusNode? focusNode, bool autofocus = false, List<TextInputFormatter> ? inputFormatters, GestureTapCallback? onTap, required TextEditingController controller, String? labelText, bool enabled = true, bool autocorrect = false, EdgeInsets? contentPadding, TextCapitalization textCapitalization = TextCapitalization.sentences, TextAlignVertical textAlignVertical = TextAlignVertical.center, int? maxLines = 1, bool alignLabelWithHint = false, String? hintText, int? hintMaxLines, String? errorText, TextInputAction textInputAction = TextInputAction.done})
Properties
- autocorrect → bool
-
Whether to enable autocorrection.
finalinherited
-
autofillHints
→ Iterable<
String> ? -
A list of strings that helps the autofill service identify the type of this
text input.
finalinherited
- autofocus → bool
-
Whether this text field should focus itself if nothing else is already
focused.
finalinherited
- buildCounter → InputCounterWidgetBuilder?
-
Callback that generates a custom InputDecoration.counter widget.
finalinherited
- canRequestFocus → bool
-
Determine whether this text field can request the primary focus.
finalinherited
- clipBehavior → Clip
-
The content will be clipped (or not) according to this option.
finalinherited
- contentInsertionConfiguration → ContentInsertionConfiguration?
-
Configuration of handler for media content inserted via the system input
method.
finalinherited
- contextMenuBuilder → EditableTextContextMenuBuilder?
-
Builds the text selection toolbar when requested by the user.
finalinherited
- controller → TextEditingController?
-
Controls the text being edited.
finalinherited
- cursorColor → Color?
-
The color of the cursor.
finalinherited
- cursorErrorColor → Color?
-
The color of the cursor when the InputDecorator is showing an error.
finalinherited
- cursorHeight → double?
-
How tall the cursor will be.
finalinherited
- cursorOpacityAnimates → bool?
-
Whether the cursor will animate from fully transparent to fully opaque
during each cursor blink.
finalinherited
- cursorRadius → Radius?
-
How rounded the corners of the cursor should be.
finalinherited
- cursorWidth → double
-
How thick the cursor will be.
finalinherited
- decoration → InputDecoration?
-
The decoration to show around the text field.
finalinherited
- dragStartBehavior → DragStartBehavior
-
Determines the way that drag start behavior is handled.
finalinherited
- enabled → bool?
-
If false the text field is "disabled": it ignores taps and its
decoration is rendered in grey.
finalinherited
- enableIMEPersonalizedLearning → bool
-
Whether to enable that the IME update personalized data such as typing
history and user dictionary data.
finalinherited
- enableInteractiveSelection → bool
-
Whether to enable user interface affordances for changing the
text selection.
finalinherited
- enableSuggestions → bool
-
Whether to show input suggestions as the user types.
finalinherited
- expands → bool
-
Whether this widget's height will be sized to fill its parent.
finalinherited
- focusNode → FocusNode?
-
Defines the keyboard focus for this widget.
finalinherited
- groupId → Object
-
The group identifier for the TextFieldTapRegion of this text field.
finalinherited
- hashCode → int
-
The hash code for this object.
no setterinherited
- ignorePointers → bool?
-
Determines whether this widget ignores pointer events.
finalinherited
-
inputFormatters
→ List<
TextInputFormatter> ? -
Optional input validation and formatting overrides.
finalinherited
- key → Key?
-
Controls how one widget replaces another widget in the tree.
finalinherited
- keyboardAppearance → Brightness?
-
The appearance of the keyboard.
finalinherited
- keyboardType → TextInputType
-
The type of keyboard to use for editing the text.
finalinherited
- magnifierConfiguration → TextMagnifierConfiguration?
-
The configuration for the magnifier of this text field.
finalinherited
- maxLength → int?
-
The maximum number of characters (Unicode grapheme clusters) to allow in
the text field.
finalinherited
- maxLengthEnforcement → MaxLengthEnforcement?
-
Determines how the maxLength limit should be enforced.
finalinherited
- maxLines → int?
-
The maximum number of lines to show at one time, wrapping if necessary.
finalinherited
- minLines → int?
-
The minimum number of lines to occupy when the content spans fewer lines.
finalinherited
- mouseCursor → MouseCursor?
-
The cursor for a mouse pointer when it enters or is hovering over the
widget.
finalinherited
- obscureText → bool
-
Whether to hide the text being edited (e.g., for passwords).
finalinherited
- obscuringCharacter → String
-
Character used for obscuring text if obscureText is true.
finalinherited
- onAppPrivateCommand → AppPrivateCommandCallback?
-
This is used to receive a private command from the input method.
finalinherited
-
onChanged
→ ValueChanged<
String> ? -
Called when the user initiates a change to the TextField's
value: when they have inserted or deleted text.
finalinherited
- onEditingComplete → VoidCallback?
-
Called when the user submits editable content (e.g., user presses the "done"
button on the keyboard).
finalinherited
-
onSubmitted
→ ValueChanged<
String> ? -
Called when the user indicates that they are done editing the text in the
field.
finalinherited
- onTap → GestureTapCallback?
-
Called for the first tap in a series of taps.
finalinherited
- onTapAlwaysCalled → bool
-
Whether onTap should be called for every tap.
finalinherited
- onTapOutside → TapRegionCallback?
-
Called for each tap that occurs outside of theTextFieldTapRegion group
when the text field is focused.
finalinherited
- readOnly → bool
-
Whether the text can be changed.
finalinherited
- restorationId → String?
-
Restoration ID to save and restore the state of the text field.
finalinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- scribbleEnabled → bool
-
Whether iOS 14 Scribble features are enabled for this widget.
finalinherited
- scrollController → ScrollController?
-
The ScrollController to use when vertically scrolling the input.
finalinherited
- scrollPadding → EdgeInsets
-
Configures padding to edges surrounding a Scrollable when the Textfield scrolls into view.
finalinherited
- scrollPhysics → ScrollPhysics?
-
The ScrollPhysics to use when vertically scrolling the input.
finalinherited
- selectionControls → TextSelectionControls?
-
Optional delegate for building the text selection handles.
finalinherited
- selectionEnabled → bool
-
Same as enableInteractiveSelection.
no setterinherited
- selectionHeightStyle → BoxHeightStyle
-
Controls how tall the selection highlight boxes are computed to be.
finalinherited
- selectionWidthStyle → BoxWidthStyle
-
Controls how wide the selection highlight boxes are computed to be.
finalinherited
- showCursor → bool?
-
Whether to show cursor.
finalinherited
- smartDashesType → SmartDashesType
-
Whether to allow the platform to automatically format dashes.
finalinherited
- smartQuotesType → SmartQuotesType
-
Whether to allow the platform to automatically format quotes.
finalinherited
- spellCheckConfiguration → SpellCheckConfiguration?
-
Configuration that details how spell check should be performed.
finalinherited
- statesController → MaterialStatesController?
-
Represents the interactive "state" of this widget in terms of a set of
MaterialStates, including MaterialState.disabled, MaterialState.hovered,
MaterialState.error, and MaterialState.focused.
finalinherited
- strutStyle → StrutStyle?
-
The strut style used for the vertical layout.
finalinherited
- style → TextStyle?
-
The style to use for the text being edited.
finalinherited
- textAlign → TextAlign
-
How the text should be aligned horizontally.
finalinherited
- textAlignVertical → TextAlignVertical?
-
How the text should be aligned vertically.
finalinherited
- textCapitalization → TextCapitalization
-
Configures how the platform keyboard will select an uppercase or
lowercase keyboard.
finalinherited
- textDirection → TextDirection?
-
The directionality of the text.
finalinherited
- textInputAction → TextInputAction?
-
The type of action button to use for the keyboard.
finalinherited
- toolbarOptions → ToolbarOptions?
-
Configuration of toolbar options.
finalinherited
- undoController → UndoHistoryController?
-
Controls the undo state.
finalinherited
Methods
-
createElement(
) → StatefulElement -
Creates a StatefulElement to manage this widget's location in the tree.
inherited
-
createState(
) → State< TextField> -
Creates the mutable state for this widget at a given location in the tree.
inherited
-
debugDescribeChildren(
) → List< DiagnosticsNode> -
Returns a list of DiagnosticsNode objects describing this node's
children.
inherited
-
debugFillProperties(
DiagnosticPropertiesBuilder properties) → void -
Add additional properties associated with the node.
inherited
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toDiagnosticsNode(
{String? name, DiagnosticsTreeStyle? style}) → DiagnosticsNode -
Returns a debug representation of the object that is used by debugging
tools and by DiagnosticsNode.toStringDeep.
inherited
-
toString(
{DiagnosticLevel minLevel = DiagnosticLevel.info}) → String -
A string representation of this object.
inherited
-
toStringDeep(
{String prefixLineOne = '', String? prefixOtherLines, DiagnosticLevel minLevel = DiagnosticLevel.debug}) → String -
Returns a string representation of this node and its descendants.
inherited
-
toStringShallow(
{String joiner = ', ', DiagnosticLevel minLevel = DiagnosticLevel.debug}) → String -
Returns a one-line detailed description of the object.
inherited
-
toStringShort(
) → String -
A short, textual description of this widget.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited