Полупрозрачный фон сверху вниз - PullRequest
0 голосов
/ 15 мая 2018

Как мне добиться такой прозрачности фона

enter image description here

Я пробовал с линейным градиентом, но не могу достичь прозрачности. Даже когда я помещаю градиенты от прозрачного к некоторому сплошному цвету, я получаю сплошной белый фон в месте, где должен быть прозрачный

class PrivacyPolicy extends Component {
static navigatorStyle = {
    navBarHidden: true
};

composePolicy(data) {
    return (
        <View>
            {data.header.length ? <Text style={styles.policyHeader}>{data.header}</Text> : null}
            {data.text.map((textItem, index) => <Text style={styles.policyText} key={index}>{textItem}</Text>)}
        </View>
    )
}

render = () => {
    return (
        <View style={styles.wrapper}>
            <Text style={styles.header}>Privacy Policy</Text>
            <ScrollView showsVerticalScrollIndicator={true}>
                <View style={styles.contentContainer}>
                    {policyData.map((policy) => this.composePolicy(policy))}
                </View>
            </ScrollView>
            <View style={styles.opa}>
                <LinearGradient colors={['transparent', 'rgba(0, 0, 0,0.4)', 'rgba(114, 110, 248,0.5)', 'rgb(79, 206, 249)']} style={styles.bottomDecoration}>
                </LinearGradient>
            </View>
        </View>
    )
}

}

const styles = StyleSheet.create({
wrapper: {
    flex: 1,
    flexDirection: 'column',
    backgroundColor: AppColors.white
},
header: {
    textAlign: 'center',
    fontSize: 22,
    fontWeight: 'normal',
    marginTop: 25,
    marginBottom: 30
},
contentContainer: {
    marginRight: 30,
    marginLeft: 30,
},
policyHeader: {
    color: '#162c57',
    fontSize: 22,
    fontWeight: 'bold',
    marginBottom: 25
},
policyText: {
    marginBottom: 15
},
bottomDecoration: {
    height: 100,
    // opacity: 0.3
},
opa: {

}

});

1 Ответ

0 голосов
/ 16 мая 2018

Я нашел решение.

Экспонат прозрачного линейного градиента показывает черноватый

<LinearGradient
colors={[ 'rgba(255,255,255,0)', 'rgba(255,255,255,1)']}
style={{
    position: 'absolute',
    left: 0,
    right: 0,
    bottom: 0,
    height: 80,
}}

/>

...