We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3ae5ee commit f9d55eaCopy full SHA for f9d55ea
index.js
@@ -5,7 +5,8 @@ import {
5
TouchableHighlight,
6
View,
7
StyleSheet,
8
- ListView
+ ListView,
9
+ YellowBox
10
} from "react-native";
11
import PropTypes from "prop-types";
12
@@ -19,6 +20,7 @@ export default class ModalPicker extends Component {
19
20
dataSource: ds.cloneWithRows(this.props.data),
21
modalVisible: false
22
};
23
+ YellowBox.ignoreWarnings(['ListView is deprecated']);
24
}
25
26
componentWillReceiveProps( nextProps ) {
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "react-native-simple-modal-picker",
3
- "version": "0.1.2",
+ "version": "0.1.3",
4
"description": "Simple Picker/DropDown/Chooser/Selector for React Native",
"main": "index.js",
"scripts": {
0 commit comments