Reagovat Nativní: Závazný Vzor

0

Otázka

Existuje nějaký způsob, jak vázat TextChangeable Reagovat Component?

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

Nejlepší odpověď

0

Můžete to udělat takhle

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

V jiných jazycích

Tato stránka je v jiných jazycích

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