如何在导航抽屉中添加线性渐变颜色

时间:2019-02-05 11:49:13

标签: android react-native linear-gradients react-native-navigation

The color gradient coming only behind text i want on full screen 我正在使用Wix的react-native-navigation V2。我想要导航抽屉中的渐变颜色。我已经安装了react-native-linear-gradient及其工作。但是问题是渐变色仅出现在文本旁边,但我希望整个抽屉都使用。 以下是我的导航抽屉代码。

render() {
    return (

      <ScrollView style={styles.container}>
        <LinearGradient colors={['#a8ff78', '#78ffd6']}>
          <TouchableOpacity>
            <Text style={styles.list} onPress={this.goNew}>comp1</Text>
            <Text style={styles.list} >comp2</Text>
            <Text style={styles.list} onPress={this.goSignIn} >Sign In</Text>
          </TouchableOpacity>
        </LinearGradient>
      </ScrollView>
    )
  }

我没有怎么做。

0 个答案:

没有答案