inputmode property
InputMode?
get
inputmode
Specify the inputmode - already in place for when browsers start to support them https://html.spec.whatwg.org/#input-modalities:-the-inputmode-attribute
@default "verbatim"
Implementation
_i3.InputMode? get inputmode => switch (_i4.getProperty(
this,
'inputmode',
)) {
_i2.String name => _i3.InputModeOptions.values.byName(name),
_ => null
};
set
inputmode
(InputMode? value)
Implementation
set inputmode(_i3.InputMode? value) {
_i4.setProperty(
this,
'inputmode',
value?.name ?? _i6.undefined ?? _i6.undefined,
);
}