diff --git a/Examples/UIExplorer/js/UIExplorerApp.android.js b/Examples/UIExplorer/js/UIExplorerApp.android.js index 7d1b9aecd..1721dfab7 100644 --- a/Examples/UIExplorer/js/UIExplorerApp.android.js +++ b/Examples/UIExplorer/js/UIExplorerApp.android.js @@ -42,6 +42,8 @@ const UIManager = require('UIManager'); const URIActionMap = require('./URIActionMap'); const View = require('View'); +import type {UIExplorerNavigationState} from './UIExplorerNavigationReducer'; + UIManager.setLayoutAnimationEnabledExperimental(true); const DRAWER_WIDTH_LEFT = 56; diff --git a/Examples/UIExplorer/js/UIExplorerExampleList.js b/Examples/UIExplorer/js/UIExplorerExampleList.js index 1186bbac0..633ce7177 100644 --- a/Examples/UIExplorer/js/UIExplorerExampleList.js +++ b/Examples/UIExplorer/js/UIExplorerExampleList.js @@ -120,6 +120,7 @@ class UIExplorerExampleList extends React.Component { this.props.persister.setState(() => ({filter: text})); }} placeholder="Search..." + underlineColorAndroid="transparent" style={[styles.searchTextInput, this.props.searchTextInputStyle]} testID="explorer_search" value={this.props.persister.state.filter} @@ -215,6 +216,7 @@ const styles = StyleSheet.create({ borderRadius: 3, borderWidth: 1, paddingLeft: 8, + paddingVertical: 0, height: 35, }, });