Réagir Natif: La Liaison De Modèle

0

La question

Est-il possible de lier TextChangeable de Réagir Composant?

render() {
    const TextChangeable = `
    <Text style={styles.descText}>
      All reports size is
        <Text style={styles.downloadSize}>
            38 MB
        </Text>
    </Text>
    `
    return <View>
      {TextChangeable}
    </View>
  }
react-native templates
2021-11-24 04:28:40
1

La meilleure réponse

0

Vous pouvez le faire comme ceci

import React from 'react';
import { Text, View } from 'react-native';

const TextChangeable = () => {
  return (
    <Text style={styles.descText}>
      All reports size is
        <Text style={styles.downloadSize}>
            38 MB
        </Text>
    </Text>
  );
}

render() {
    return (
      <View>
        <TextChangeable />
      </View>
   );
}
2021-11-24 06:33:55

Dans d'autres langues

Cette page est dans d'autres langues

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................