Browse Source

Dismiss keyboard on menu open

master
zbettenbuk 7 years ago
parent
commit
547ddee3a5
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      react/features/welcome/components/WelcomePage.native.js

+ 2
- 0
react/features/welcome/components/WelcomePage.native.js View File

1
 import React from 'react';
1
 import React from 'react';
2
 import {
2
 import {
3
+    Keyboard,
3
     SafeAreaView,
4
     SafeAreaView,
4
     Switch,
5
     Switch,
5
     TextInput,
6
     TextInput,
150
      * @returns {void}
151
      * @returns {void}
151
      */
152
      */
152
     _onShowSideBar() {
153
     _onShowSideBar() {
154
+        Keyboard.dismiss();
153
         this.props.dispatch(setSideBarVisibility(true));
155
         this.props.dispatch(setSideBarVisibility(true));
154
     }
156
     }
155
 
157
 

Loading…
Cancel
Save