fix: capability to dismiss the keyboard on drag for iOS on RoomsListView (#5094)

* fix: add the capability to dismiss the keyboard on drag for iOS

* minor tweak
This commit is contained in:
Reinaldo Neto 2023-06-16 18:37:26 -03:00 committed by GitHub
parent da1485ba56
commit 4880c47e9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -914,6 +914,7 @@ class RoomsListView extends React.Component<IRoomsListViewProps, IRoomsListViewS
windowSize={9}
onEndReached={this.onEndReached}
onEndReachedThreshold={0.5}
keyboardDismissMode={isIOS ? 'on-drag' : 'none'}
/>
);
};