Skip to content

Commit

Permalink
Fix keyboard dismiss in IconExplorer (oblador#756)
Browse files Browse the repository at this point in the history
  • Loading branch information
badver authored and oblador committed Jun 25, 2018
1 parent ae35b3b commit 2120737
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Examples/IconExplorer/IconSetList.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { PureComponent } from 'react';
import FontAwesome from 'react-native-vector-icons/FontAwesome';
import {
Alert,
dismissKeyboard,
Keyboard,
Platform,
SectionList,
StyleSheet,
Expand Down Expand Up @@ -166,7 +166,7 @@ export default class IconSetsList extends PureComponent {
passProps: { iconSet },
});
} else {
dismissKeyboard();
Keyboard.dismiss();
this.props.navigator.push({
title: iconSet.name,
name: 'iconSet',
Expand Down

0 comments on commit 2120737

Please sign in to comment.