-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix - HTML Editor - Keyboard can not be closed #743
Conversation
@daniloercoli I have seen that too on the example app, but I haven't been able to reproduce it on the WPiOS app. I couldn't test Android since there is no option to switch to HTML in the Android example app 🤔 |
Will try in it the wp-android app. |
@daniloercoli - I also noticed that the HTML textview does not display all the HTML text. |
Tested by integrating this PR in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Works as expected on Android. Also tested iOS and it worked fine.
Thanks @daniloercoli 🎉 |
…rg-mobile into issue/707-Placeholder-is-missing-on-Heading-block * 'develop' of https://github.com/wordpress-mobile/gutenberg-mobile: (22 commits) Update gutenberg ref Update gutenberg ref Update gutenberg ref Update heading placeholder size on heading level change (#742) Fix - HTML Editor - Keyboard can not be closed (#743) Update gutenberg ref Update gutenberg ref Fix lint errors Make sure onSafeAreaInsetsUpdate isn't called when BlockManager is unmounted Remove extra semicolon Remove unused editor settings prop Unmount the app after each test to prevent dangling subscribers Fix switching to html when initialHtmlModeEnabled is true Auto import native versions of variables and colors Fix lint errors Use @wordpress/edit-post package to bootstrap the editor and refactor components Add symlink for @wordpress/token-list Minor syntax fixes Update tests to use the un deprecated version of the store methods Update gutenberg ref ... # Conflicts: # gutenberg
…rg-mobile into issue/345-fix-for-press-delete-no-merge-move-focus * 'develop' of https://github.com/wordpress-mobile/gutenberg-mobile: (39 commits) Update gb hash after merging the companion PR Update GB ref Update gutenberg ref Update gutenberg ref Update gutenberg ref Tests: Add mock for the newly added CSS class Update GB ref Raise the minHeight value for heading block to 60 (it was 50) Introduce a constant for the string `tag` and use it instead of the hard coded string Make `tagName` private Update heading placeholder size on heading level change (#742) Fix - HTML Editor - Keyboard can not be closed (#743) Update gutenberg ref Update gutenberg ref Update GB ref Add comments Update caret position after inserting link (#716) Update GB hash Reuse `blockType` instead of adding a new property Update GB ref ... # Conflicts: # src/block-management/block-holder.js
Fix #428
On iOS there was no way of closing the keyboard on HTML mode, now we are adding keyboardDismissMode option, so user can drag down to close the keyboard.
Android behavior doesn't change. On Android there's already a keyboard down button. The 'interactive' option is supported for iOS only, so Android will continue having the default value: https://facebook.github.io/react-native/docs/scrollview#keyboarddismissmode
To Test