截屏2024-07-18 10.44.11.png
class MyText extends StatelessWidget {
const MyText({super.key});
@override
Widget build(BuildContext context) {
return Text("Hello world! I'm Jack.Hello world! I'm Jack.Hello world! I'm Jack.v ",
textAlign: TextAlign.center,
textScaler: TextScaler.linear(1.5),
style: TextStyle(
fontSize: 20,
overflow: TextOverflow.ellipsis,
fontWeight: FontWeight.bold,
color: Colors.red,
fontFamily: "微软雅黑",
decoration: TextDecoration.underline,
decorationColor: Colors.green,
decorationStyle: TextDecorationStyle.wavy,
decorationThickness: 2,
letterSpacing: 2,
wordSpacing: 2,
background: Paint()
..color = Colors.yellow
..style = PaintingStyle.stroke
..strokeWidth = 2,
)
);
}
}