Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
'use strict';

import React, {Component, PropTypes} from 'react';
import React, {Component} from 'react';
import PropTypes from 'prop-types';
import {
StyleSheet,
View,
Text,
Image,
Dimensions,
PixelRatio,
PanResponder
PanResponder,
ViewPropTypes,
TextStylePropTypes
} from 'react-native';

class PickerAndroidItem extends Component{
Expand All @@ -34,9 +37,9 @@ export default class PickerAndroid extends Component{

static propTypes = {
//picker's style
pickerStyle: View.propTypes.style,
pickerStyle: ViewPropTypes.style,
//picker item's style
itemStyle: Text.propTypes.style,
itemStyle: TextStylePropTypes,
//picked value changed then call this function
onValueChange: PropTypes.func,
//default to be selected value
Expand Down