rightAlign property

bool? rightAlign

Align the input to the right

By setting the rightAlign you can specify to right-align an inputmask. This is only applied in combination of the numericInput option or the dir-attribute.

@default true

Implementation

_i2.bool? get rightAlign => _i4.getProperty(
      this,
      'rightAlign',
    );
void rightAlign=(bool? value)

Implementation

set rightAlign(_i2.bool? value) {
  _i4.setProperty(
    this,
    'rightAlign',
    value ?? _i6.undefined,
  );
}