如何在反应原生模态中调暗背景?

时间:2018-01-02 09:36:03

标签: reactjs react-native

以下是我创建的反应原生模态,仍然无法找到如何调暗背景和透明模式周围透明。我没有使用任何外部库并试图找到没有库的解决方案。是否可以做到这样吗?

enter image description here

我的模态组件

render() {
let modal = this.state.modalType=='skill'? <SkillModal /> : <TrialModal />;
return (
  <View style={styles.container}>
    <Modal
      animationType='slide'
      onRequestClose={() => console.log('no warning')}
      presentationStyle="FormSheet"
      transparent
      visible={this.state.showModal}
    >
      <View>
        <View style={styles.modalView} >
          <TouchableOpacity
            onPress={this.closeModalFunc}
          >
            <Text style={styles.closeText}>X</Text>
          </TouchableOpacity>
          <View>
            {modal}
          </View>
        </View>
      </View>
    </Modal>
  </View>
  );
}

模态组件样式

import {StyleSheet} from 'react-native';
import colors from '../../../theme/colors';
import metrics from '../../../theme/metrics';
import {container} from '../../../theme/base';

const styles = StyleSheet.create({
container: {
 backgroundColor: colors.background.gray,
},
modalView: {
 backgroundColor: colors.background.white,
 margin: 40,
},
closeText: {
  backgroundColor: colors.background.purpleishBlue,
  color: colors.background.white,
  borderRadius: metrics.avatar.small,
  width: 32,
  padding: 6,
  alignSelf: 'flex-end',
  textAlign: 'center',
  borderWidth: 1,
  borderColor: colors.background.white,
 },
});

export default styles;

8 个答案:

答案 0 :(得分:12)

我通过创建我自己的组件MyPopup来解决这个问题,如下所示

class MyPopup extends React.PureComponent {

render() {
    return (
        <Modal 
            animationType="fade"
            transparent={true}
            visible={this.props.visible}
            >
                <View style={{flex: 1, alignItems: 'center', justifyContent: 'center', backgroundColor: 'rgba(0,0,0,0.5)'}}>
                    {this.props.children}
                </View>
        </Modal>
    )
}}

然后我就像

一样使用它
<MyPopup visible={this.state.modalVisible}>
<View style={{
    width: '90%',
    height: 50,
    borderColor: '#ccc',
    borderWidth: 1,
    borderStyle: 'solid',
    backgroundColor: 'white',
    elevation: 20,
    padding: 10,
    borderRadius: 4,
}}>
    <Text>Hello, This is my model with dim background color</Text>
</View>

答案 1 :(得分:3)

View可见时,您可以以编程方式设置主Modal的不透明度。

<View style={[styles.container, this.state.showModal ? {backgroundColor: 'rgba(0,0,0,0.5)'} : '']}>

答案 2 :(得分:2)

通过react-native-modal,您可以使用backgroundOpacity属性在模态可见时使背景变暗

import React, {useState} from 'react';
import {Button, Text, View} from 'react-native';
import Modal from 'react-native-modal';

function ModalTester() {
  const [isModalVisible, setModalVisible] = useState(false);

  const toggleModal = () => {
    setModalVisible(!isModalVisible);
  };

  render() {
return (
  <View style={{flex: 1}}>
    <Button title="Show modal" onPress={toggleModal} />

    <Modal isVisible={isModalVisible} backdropOpacity={0.3}>
      <View style={{flex: 1}}>
        <Text>Hello!</Text>

        <Button title="Hide modal" onPress={toggleModal} />
      </View>
    </Modal>
  </View>
);
  }
}

export default ModalTester;

答案 3 :(得分:1)

我遇到了与您相同的问题,我通过在模式的Props中设置transparent={true}并通过以Modal的主视图样式设置{50}的透明度来解决了这个问题:backgroundColor: 'rgba(0, 0, 0, 0.5)'

答案 4 :(得分:1)

单击该模态后,我设法获得了一个透明的深色背景,将其关闭。
我在模态元素中使用第一个外部容器,该容器具有全屏尺寸。 在其中,内部容器的大小为盒子,并且位于屏幕中央。

这里是代码(反应:v16.13,本机:v0.63.2)

import React from 'react';
import {Modal, Text, TouchableWithoutFeedback, View} from 'react-native';
import {style} from './style';

const MyModal = ({visible, onDismiss}) => {
  return (
    <Modal visible={visible} transparent>
      <TouchableWithoutFeedback onPress={() => onDismiss()}>
        <View style={style.modal}>
          <TouchableWithoutFeedback>
            <View style={style.modalInner}>
              <Text>Something in the modal</Text>
            </View>
          </TouchableWithoutFeedback>
        </View>
      </TouchableWithoutFeedback>
    </Modal>
  );
};

export default MyModal;

onDismiss是一个回调,用于从其父级切换给该组件的visible变量的值。

TouchableWithoutFeedback在容器上添加了onPress事件处理。外部单击响应,以关闭/关闭模态。内层不执行任何操作(未给出onPress时的默认行为)。

具有样式:

import {StyleSheet} from 'react-native';

export const style = StyleSheet.create({
  modal: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
    backgroundColor: 'rgba(0,0,0,0.5)',
  },

  modalInner: {
    height: 200,
    padding: 35,
    justifyContent: 'space-around',
    alignItems: 'center',
    backgroundColor: '#FFF',
    shadowColor: '#000',
    shadowOffset: {
      width: 0,
      height: 2,
    },
    shadowOpacity: 0.25,
    shadowRadius: 3.84,
    elevation: 5,
  },
});

请注意,我的<MyModal>的父元素是我的应用程序的根<View>,其样式为{flex: 1}

答案 5 :(得分:0)

我创建了一种容器样式,然后为backgroundColor应用了rgba值,例如:

    modalContainer:{
      flex: 1,
      //backgroundColor: 'transparent',
      backgroundColor: 'rgba(0,0,0,0.7)',
      alignItems: 'center',
      justifyContent: 'center',
    },

然后在模态内部,我创建了一个带有圆角的实际模态对话框(我通过在模态内容内添加另一个元素并将其带圆角的白色背景实现了此操作)。

答案 6 :(得分:0)

您必须向 Modal 组件添加 statusBarTranslucent 道具并将其设置为 true。然后你会得到你想要的输出。无需将 transparent 道具设置为 true 或任何其他繁琐的样式。

答案 7 :(得分:0)

我只是将整个 modalView 包裹在另一个 View 中,然后简单地对其应用背景

<View style={styles.modalbackdrop}>   
   <View style={styles.modalView}></View>
</View>

并应用以下

backgroundColor: 'rgba(0, 0, 0, 0.8)',
height: '100%',