简体   繁体   English

可以根据值更改文本颜色吗? (反应原生)

[英]It is possible to change the text color depending on the value? (React native)

I am working in an app using React native, here goes the code that I am in trouble:我正在使用 React Native 的应用程序中工作,这是我遇到麻烦的代码:

import React, { Component } from "react";
import { Text, StyleSheet } from "react-native";
import { Content, Card, CardItem, Body, Left } from "native-base";
import { PricingCard } from "react-native-elements";

export default class AppBodyData extends Component {
  render() {
    let articles = this.props.data.map(function (articleData, index) {
      return (
        <PricingCard
          //color='#ff3300'
          wrapperStyle={
            articleData.percent_change_1h >= 0 ? styles.green : styles.red
          }
          info={[
            "1h change: " + articleData.percent_change_1h,
            "24h change: " + articleData.percent_change_24h,
            "7days change: " + articleData.percent_change_7d,
          ]}
          button={{
            title: "More information",
            icon: "info",
            backgroundColor: "#4f9deb",
          }}
        />
      );
    });

    return <Content>{articles}</Content>;
  }
}

const styles = StyleSheet.create({
  green: {
    color: "#00ff00",
  },
  red: {
    color: "#ff0000",
  },
});

module.export = AppBodyData;

What I need is that if the articleData.percent_change_1h variable is positive the color of that variable must be green otherwise must be red.我需要的是,如果articleData.percent_change_1h变量为正,则该变量的颜色必须为绿色,否则必须为红色。

PricingCard is an object of react-native-elements library: https://react-native-training.github.io/react-native-elements/API/pricing/ PricingCard 是 react-native-elements 库的一个对象: https ://react-native-training.github.io/react-native-elements/API/pricing/

Thanks in advance提前致谢

You could use a ternary operator to manipulate styles passed to your PricingCard's wrapperStyle prop .你可以使用一个ternary operator来操作styles传递给PricingCard's wrapperStyle prop

// Stylesheet.
import { StyleSheet } from 'react-native'

// Card.
<PricingCard wrapperStyle={(articleData.percent_change_1h >= 0) ? styles.green : styles.red} ../>

// Styles.
const styles = Stylesheet.create({
  green: {
    color: '#00ff00'
  },
  red: {
    color: '#ff0000'
  }
})

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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