Tip

继承自 Modal 组件,属于 Modal 系列。

Install

  1. npm install beeshell

Usage

引入方式

全部引入

  1. import { Tip } from 'beeshell';

单独引入

  1. import Tip from 'beeshell/components/Modal/extensions/Tip';

Examples

image

Code

  1. import { Tip } from 'beeshell';
  2. class App extends React.Component {
  3. render() {
  4. <View>
  5. <TouchableOpacity
  6. onPress={() => {
  7. this._tip.open();
  8. }}>
  9. <Text>基础用法</Text>
  10. </TouchableOpacity>
  11. <Tip
  12. ref={(c) => { this._tip = c; }}
  13. cancelable={true}
  14. body="默认文案"
  15. />
  16. </View>
  17. }
  18. }

Props

Name Type Required Default Description
cancelable Boolean false true 点击蒙层是否消失
body String false ‘hello world’ 提示文案
alignItems String false ‘center’ 组件展示位置,flex-start 顶部 flex-end 底部 center 中部
duration Number false null 弹出后在 duration 指定的毫秒数后自动关闭,未指定则不会自动关闭

Methods

.open()

打开弹窗。

  1. this._tip.open();

.close()

关闭弹窗。

  1. this._tip.close();

其他

继承 Modal 组件的所有 Props、Methods。