“envoltura de texto en Flutter” Código de respuesta

envoltura de texto en Flutter

new Container(
       child: Row(
         children: <Widget>[
            Flexible(
               child: new Text("A looooooooooooooooooong text"))
                ],
        ),
);
Adarsh077

envoltura de texto Flutter

    //80% of screen width
    double c_width = MediaQuery.of(context).size.width*0.8;

    return new Container (
      padding: const EdgeInsets.all(16.0),
      width: c_width,
      child: new Column (
        children: <Widget>[
          new Text ("Long text 1 Long text 1 Long text 1 Long text 1 Long text 1 Long text 1 Long text 1 Long text 1 Long text 1 Long text 1 Long text 1 Long text 1 Long text 1 Long text 1 ", textAlign: TextAlign.left),
          new Text ("Long Text 2, Long Text 2, Long Text 2, Long Text 2, Long Text 2, Long Text 2, Long Text 2, Long Text 2, Long Text 2, Long Text 2, Long Text 2", textAlign: TextAlign.left),
        ],
      ),
    );
Wide-eyed Wildebeest

Respuestas similares a “envoltura de texto en Flutter”

Preguntas similares a “envoltura de texto en Flutter”

Más respuestas relacionadas con “envoltura de texto en Flutter” en Dart

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código