简体   繁体   中英

React Native: Add opacity to text at the bottom of scrollview

Do you guys have any idea how to achieve this? The text is wrapped in ScrollView with maxHeight 400.

 <ScrollView style={{maxHeight: 400}}>
   <Text>{text}</Text>
 </ScrollView>

This is what I want:

在此处输入图片说明

I hope this works for you :

<TouchableOpacity
    style={"row"}
    onPress={() => {
        onClick(params)
    }}>
    <View>
        <Text>1</Text>
        <Text>2</Text>
        <Text>4</Text>
    </View>
</TouchableOpacity>

And here is live demo : https://snack.expo.io/@maifeeulasad/delicious-marshmallows

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM