1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| Text( "Hello World!" * 12, textAlign: TextAlign.center, maxLines: 1, overflow: TextOverflow.ellipsis, textScaleFactor: 0.8, style: TextStyle( height: 2, color: Colors.blue, fontSize: 18.0, fontFamily: "Courier", background: new Paint()..color = Colors.yellow, decoration: TextDecoration.underline, decorationStyle: TextDecorationStyle.dashed, ), )
|