platform_text_input Introduction This project provides an amazing widget for using the specific inputfield for the specific platform Example class _HomeState extends State<Home> { @override Widget build(BuildContext context) { return Container( color: Colors.blue, child: Center( child: MTextFormField( controller: _usernameController, focusNode: _usernameFocus, keyboardType: TextInputType.text, textInputAction: TextInputAction.next, inputDecorator: InputDecoration( labelText: «username», errorText: «username error», ), onChanged: (value) { _store.username = value; }, onFieldSubmitted: …
