“Enveloppement de texte en flottement” Réponses codées

Enveloppement de texte en flottement

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

Enveloppe de texte 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

Réponses similaires à “Enveloppement de texte en flottement”

Questions similaires à “Enveloppement de texte en flottement”

Plus de réponses similaires à “Enveloppement de texte en flottement” dans Dart

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code