react-native
複数の小道具のレンダリング
サーチ…
複数の変数をレンダリングする
複数の小道具や変数をレンダリングするには``を使うことができます。
render() {
let firstName = 'test';
let lastName = 'name';
return (
<View style={styles.container}>
<Text>{`${firstName} ${lastName}` } </Text>
</View>
);
}
出力:テスト名
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow