0.2.2 • Published 4 years ago

react-native-root-views v0.2.2

Weekly downloads
1
License
Apache-2.0
Repository
github
Last release
4 years ago

react-native-root-views

Installation

npm install react-native-root-views --save

Usage

import { ActionSheet, Loading } from 'react-native-root-views';

// show loading
Loading.show();

// hide loading
Loading.hide();

ActionSheet.showActionSheetWithOptions(
  {
    options: ['拍照', '从相册选择', '取消'],
    cancelButtonIndex: 2,
    tintColor: '#2b3d54',
  },
  buttonIndex => {
    // do something
  },
);

API

ActionSheet

Same API as ActionSheetIOS

Loading

show()

show loading

hide()

hide loading