91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

react native彈窗怎么封裝

發布時間:2022-08-23 16:12:49 來源:億速云 閱讀:299 作者:iii 欄目:開發技術

今天小編給大家分享一下react native彈窗怎么封裝的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。

上圖

react native彈窗怎么封裝

仿蘋果彈窗組件(android+ios均可用)

react native彈窗怎么封裝

react native彈窗怎么封裝

以上效果均基于本文的彈窗組件,后續將會介紹上面的組件,也可基于改組件定制更多組件

安裝依賴 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(<View>{component}</View>)

完整代碼

多彈窗管理不涉及,暫時介紹單個彈窗,感興趣的可以自己試試,將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(<View>{component}</View>)

使用示例&mdash;>淡入背景

組件 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 <Animated.View style={{
      position: 'absolute',
      width: getScreenWidth(),
      height: getScreenHeight(),
      backgroundColor: '#000',
      opacity: opct,
      zIndex: 10
    }}><TouchableOpacity onPress={() => {
      destroyLastSibling();
    }} style={{flex: 1}} /></Animated.View>;
  }
}

調用

showModal(<ModalBg />);

以上就是“react native彈窗怎么封裝”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

石嘴山市| 柘荣县| 隆化县| 永寿县| 台中县| 广河县| 眉山市| 天等县| 旌德县| 黑龙江省| 阳谷县| 抚州市| 图们市| 宁津县| 嵊泗县| 阿合奇县| 那曲县| 蒙城县| 大荔县| 法库县| 桐梓县| 高平市| 大方县| 叶城县| 额尔古纳市| 元朗区| 凉城县| 无棣县| 微山县| 黄平县| 定安县| 紫金县| 仁化县| 屏南县| 双鸭山市| 东宁县| 孟村| 绿春县| 焦作市| 鄂托克前旗| 鲜城|