代码之家  ›  专栏  ›  技术社区  ›  Sam

React Native:将阴影应用于视图外部,而不应用于内部视图

  •  0
  • Sam  · 技术社区  · 5 年前

    这就是我的页面

    enter image description here

    我只想在红线处找到影子

    enter image description here

    我不想在内部元素上留下阴影,尤其是文本。我还希望阴影出现在视图下方。

    这就是我如何设计我的观点

      myOuterView: {
        borderWidth: 1,
        borderRadius: 2,
        borderColor: '#ddd',
        borderBottomWidth: 0,
        shadowColor: '#000',
        shadowOffset: { width: 0, height: 1 },
        shadowOpacity: 0.8,
        shadowRadius: 2,
        elevation: 1,
        marginLeft: 5,
        marginRight: 5,
        marginTop: 10,
    
      },
    

    this solution 不起作用或引起其他问题

    0 回复  |  直到 5 年前
        1
  •  1
  •   SRanuluge    5 年前

    请看下面的例子,我创建了一个阴影框 网间网操作系统 安卓

    import React, { Component } from 'react';
    import { View, Text, Dimensions, Platform } from 'react-native';
    
    const screenHieght = Dimensions.get('window').height;
    class ShadowBox extends Component {
      render() {
        return (
          <View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
    
            <View style={styles.innerView}>
              <View style={styles.outer}>
                <Text style={{ textAlign: 'center' }}>card </Text>
              </View>
              <View style={styles.outer}>
                <Text style={{ textAlign: 'center' }}>card </Text>
              </View>
            </View>
    
          </View>
        );
      }
    }
    
    const styles = {
      innerView: {
        borderWidth: 1,
        backgroundColor: Platform.OS === 'ios' ? '#fff' : null,
        borderColor: '#ddd',
        shadowColor: Platform.OS === 'ios' ? 'green' : '#fff',
        shadowOffset: {
          width: Platform.OS === 'ios' ? 3 : 0,
          height: Platform.OS === 'ios' ? 3 : 2,
        },
        shadowOpacity: Platform.OS === 'ios' ? 1 : 0.8,
        shadowRadius: Platform.OS === 'ios' ? null : 40,
        elevation: Platform.OS === 'ios' ? null : 4,
        justifyContent: 'center',
        alignItems: 'center',
        width: 300,
        height: 300,
      },
      outer: {
        margin: 10,
        padding: 10,
        alignSelf: 'center',
        borderWidth: 1,
        width: '80%',
        overflow: 'hidden',
      },
    };
    
    export default ShadowBox;
    

    根据您的要求进行更改。你有什么疑问尽管问我。