顯示文字
Text('123456')
限制行數
Text('1\n2\n3\n4\n5\n6', maxLines: 2)
顯示樣式
字體大小
Text('123456', style: TextStyle(fontSize: 30))
字體顏色
Text('123456', style: TextStyle(color: Color.fromARGB(255, 255, 255, 255)))
底線
Text('123456', style: TextStyle(decoration: TextDecoration.underline))
中間刪除線
Text('123456', style: TextStyle(decoration: TextDecoration.lineThrough))
粗體
Text('123456', style: TextStyle(fontWeight: FontWeight.bold))