Skip to content

Instantly share code, notes, and snippets.

@chuyihuang
Created September 26, 2017 12:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuyihuang/134d89aa1bc41bf92591204f39658247 to your computer and use it in GitHub Desktop.
Save chuyihuang/134d89aa1bc41bf92591204f39658247 to your computer and use it in GitHub Desktop.
week_7_demo_5
import React, {Component} from 'react';
import {
View,
Text,
Button,
} from 'react-native';
export default class PickerExample extends Component {
constructor(props) {
super(props);
this.state = {
}
}
render() {
return (
<View style={{marginTop: 100}}>
<Text>PickerExample</Text>
</View>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment