中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

务川| 株洲县| 公主岭市| 乐东| 清水县| 阜康市| 留坝县| 日土县| 南溪县| 方城县| 太仆寺旗| 论坛| 普安县| 泰兴市| 江油市| 寻甸| 铜陵市| 和政县| 闽侯县| 宕昌县| 河津市| 连城县| 云安县| 仲巴县| 博客| 屏东市| 天镇县| 锡林浩特市| 三门峡市| 延庆县| 黄浦区| 永泰县| 枣强县| 两当县| 隆安县| 修文县| 邵阳市| 溧水县| 泸定县| 高安市| 凉山|