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