Jorel Kim
Jorel Kim
I also encountered this error. I am using ffmpeg and fijkplayer together. is there any solution for this?
Ive fixed this by wrapping the NotificationListener widget with RawKeyboardListener. override back space click. ```dart return RawKeyboardListener( focusNode: _effectiveFocusNode, onKey: (event) { final str = currentTextEditingValue.text; /// Make sure to...
also in my case I also have to revert to ```dart void _updateTextInputState({bool replaceText = false, String putText = ''}) { if (replaceText || putText != '') { final updatedText...
> @jorelkimcruz Hey, I have tested your changes but found some bug while testing on 'Samsung Phone'. These changes have fixed errors in the case of the alphabet but in...
> @jorelkimcruz Hey, the above commits have fixed the issue but the cursor is not visible. can you fix this? have you tried changing the cursors color?
> > > @jorelkimcruz Hey, the above commits have fixed the issue but the cursor is not visible. can you fix this? > > > > > > have you...
> @jorelkimcruz, have you tried this on the iOS simulator? I just tried out your branch (per [#97 (comment)](https://github.com/danvick/flutter_chips_input/issues/97#issuecomment-927638264)), and it seems to fix the focus issue, but it has...