“Subrayar el color de aleteo de texto” Código de respuesta

Subrayar el texto en Flutter

Text(
  'Hello world',
  style: TextStyle(
    decoration: TextDecoration.underline,
  ),
)
Agreeable Alpaca

Formulario de texto Formulario Cambio de campo Color subrayado

decoration: InputDecoration(        
  enabledBorder: UnderlineInputBorder(      
    borderSide: BorderSide(color: theColor),   
  ),  
  focusedBorder: UnderlineInputBorder(
    borderSide: BorderSide(color: theColor),
  ),
  border: UnderlineInputBorder(
    borderSide: BorderSide(color: theColor),
  ),
)
Distinct Duck

Subrayar el color de aleteo de texto

Text("Your text",
      style: TextStyle(
             color: Colors.white
             decoration: TextDecoration.underline,
             decorationColor: Colors.yellow,
          ))
Cautious Crocodile

TEXTO Subraye Flutter

Text(
  'Hello world',
  style: TextStyle(
    decoration: TextDecoration.underline,
  ),
)
Shiny Stoat

Respuestas similares a “Subrayar el color de aleteo de texto”

Preguntas similares a “Subrayar el color de aleteo de texto”

Más respuestas relacionadas con “Subrayar el color de aleteo de texto” en Dart

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código