“envoltório de texto em vibração” Respostas de código

envoltório de texto em vibração

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

Flutter de embrulho de texto

    //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

Respostas semelhantes a “envoltório de texto em vibração”

Perguntas semelhantes a “envoltório de texto em vibração”

Mais respostas relacionadas para “envoltório de texto em vibração” em Dart

Procure respostas de código populares por idioma

Procurar outros idiomas de código