Thanks for using this plugin and I hope you are happy using it so far.
- Android support is added.
- If you are using
cursorColor
and/orkeyboardAppearance
, they are wrapped iniosOptions
now as these params are effective on iOS platform only
NativeTextInput(
..._otherConfigs,
iosOptions: IosOptions(
cursorColor: _cursoorColor,
keyboardAppearance: _keyboardAppearance,
),
)
- If you are using
placeholderStyle
,placeholderColor
is extracted and the rest are moved insideiosOptions
NativeTextInput(
..._otherConfigs,
placeholderColor: _placeholderColor,
iosOptions: IosOptions(
..._otherOptions,
placeholderStyle: TextStyle(
fontSize: _placeholderFontSize,
fontWeight: _placeholderFontWeight,
),
),
)
That's all. Enjoy!