您现在的位置是:网站首页> 编程资料编程资料
react-native弹窗封装的方法_React_
2023-05-24
366人已围观
简介 react-native弹窗封装的方法_React_
本文实例为大家分享了react-native弹窗封装的具体代码,供大家参考,具体内容如下
上图

仿苹果弹窗组件(android+ios均可用)


以上效果均基于本文的弹窗组件,后续将会介绍上面的组件,也可基于改组件定制更多组件
安装依赖 yarn add react-native-root-siblings 或者 npm install react-native-root-siblings --save
主要代码
显示弹窗
export const showModal = (component) => { sibling = new RootSiblings(component); };销毁弹窗
export const destroySibling = (component) => sibling && sibling.destroy()
更新弹窗
export const update = (index, component) => sibling && sibling.update({component} )
完整代码
多弹窗管理不涉及,暂时介绍单个弹窗,感兴趣的可以自己试试,将sibling改为数组;
//ShowModal.js import React from 'react'; import {View} from 'react-native'; import RootSiblings from 'react-native-root-siblings'; //全局弹框组件 let sibling = null; export const showModal = (component) => { sibling = new RootSiblings(component); }; export const destroySibling = (component) => sibling && sibling.destroy() export const update = (index, component) => sibling && sibling.update({component} )使用示例—>淡入背景
组件 ModalBg.js
import React from 'react'; import {Animated, InteractionManager, Easing, TouchableOpacity} from 'react-native'; import {getScreenHeight, getScreenWidth} from '../../utils/util'; import {destroyLastSibling} from '../showModal/ShowModal'; export default class ModalBg extends React.Component { animated = new Animated.Value(0); isShow = false; componentDidMount(): void { InteractionManager.runAfterInteractions(() => { this.handleAni(); }); } componentWillUnmount(): void { InteractionManager.runAfterInteractions(() => { this.handleAni(); }); } handleAni = () => { Animated.timing(this.animated, { toValue: this.isShow ? 0 : 1, duration: 250, easing: Easing.ease }).start(() => this.isShow = !this.isShow); }; render() { const opct = this.animated.interpolate({ inputRange: [0, 1], outputRange: [0, 0.4] }); return { destroyLastSibling(); }} style={{flex: 1}} /> ; } }调用
showModal();
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
相关内容
- 微信小程序开发之实现一个跑步小程序_javascript技巧_
- JavaScript手写异步加法asyncAdd方法详解_JavaScript_
- react实现全局组件确认弹窗_React_
- JS实现简单留言板功能_javascript技巧_
- vue中的inject用法及说明_vue.js_
- npm install --save 、--save-dev 、-D、-S 的区别与NODE_ENV的配置方法_node.js_
- Node.js模块化的使用详细介绍_node.js_
- npm install的--save和--save-dev使用说明(推荐)_node.js_
- 微信小程序实现tab页面切换效果_javascript技巧_
- 微信小程序实现书架小功能_javascript技巧_
