Saltar al contenido

cómo subrayar el texto en el ejemplo de código nativo de reacción

Te doy la bienvenida a nuestra página web, en este sitio hallarás la respuesta a lo que necesitas.

Ejemplo 1: reaccionar subrayado de texto nativo

textDecorationLine:'underline'

Ejemplo 2: cursiva nativa de reacción

<Text style=styles.bold>I'm bold!</Text><Text style=styles.italic>I'm italic!</Text><Text style=styles.underline>I'm underlined!</Text>const styles =StyleSheet.create(
    bold:fontWeight:'bold',
    italic:fontStyle:'italic',
    underline:textDecorationLine:'underline')

Ejemplo 3: reaccionar texto nativo en cursiva

<View flex=1><Text style=style>ExampleofItalicText</Text></View>const style =StyleSheet.create(
    textAlign:'center',
    fontWeight:'bold'
    fontStyle:'italic'
    fontSize:20,);

Ejemplo 4: entrada de texto subrayado reaccionar nativo

importReact,Componentfrom'react';importStyleSheet,Text,View,TextInput,TouchableOpacityfrom'react-native';exportdefaultclassAppextendsComponentrender()return(<View style=styles.container><Text style=styles.welcome>SEDC</Text><TextInput placeholder="Acct No/User Id" style=styles.textInput multiline=true></TextInput><TextInput placeholder="Password" style=styles.textInput></TextInput><TouchableOpacity style=styles.btn onPress=this.login><Text>LogIn</Text></TouchableOpacity></View>);login=()=>alert("testing......");// this.props.navigation.navigate('Second');const styles =StyleSheet.create(
  container:
    flex:1,
    justifyContent:'center',
    alignItems:'center',
    backgroundColor:'#F5FCFF',,
  welcome:
    fontSize:20,
    textAlign:'center',
    margin:10,,

  textInput:
    alignSelf:'stretch',
    padding:10,
    marginLeft:50,
    borderBottomColor:'#000',
    margin:5,
    marginRight:50,// backgroundColor: '#000',,
  btn:
    alignSelf:'stretch',
    backgroundColor:'#01c853',
    padding:10,
    margin:10,
    marginLeft:100,
    marginRight:100,
    alignItems:'center',);

Si posees algún aprieto y capacidad de aclarar nuestro post eres capaz de realizar una ilustración y con gusto lo interpretaremos.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *