Skip to content

Instantly share code, notes, and snippets.

@chuyihuang
Created September 26, 2017 12:25
Show Gist options
  • Select an option

  • Save chuyihuang/134d89aa1bc41bf92591204f39658247 to your computer and use it in GitHub Desktop.

Select an option

Save chuyihuang/134d89aa1bc41bf92591204f39658247 to your computer and use it in GitHub Desktop.

Revisions

  1. chuyihuang created this gist Sep 26, 2017.
    24 changes: 24 additions & 0 deletions PickerExample.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,24 @@
    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>
    );
    }
    }