為您解碼網(wǎng)站建設的點點滴滴
發(fā)表日期:2018-12 文章編輯:小燈 瀏覽次數(shù):2009
做 App 開發(fā),甚至所有前端開發(fā),文本控件應該是用的最多的,用戶看到最多的基本上也都是文本控件相關的,這篇博客詳細介紹一下 Flutter 中的文本控件 Text
在 Flutter SDK 下,
flutter -> widgets -> text.dart
源碼不大,加注釋總共才不到400行。
Text -> StatelessWidget ->Widget -> DiagnosticableTree ->Diagnosticable
,這里可以看出Text 是直接繼承 StatelessWidget的。這里額外結介紹下Flutter 有兩種狀態(tài)控件:StatelessWidget(無狀態(tài)組件)、StatefulWidget(有狀態(tài)組件),這兩者的區(qū)別可以參考下走路不穿鞋oO作者寫的
Flutter中StatefulWidget控件狀態(tài)管理的兩種方式
這讓我這個習慣用 XML 畫布局感到特別的不習慣。
class MyTextApp extends StatelessWidget { @override Widget build(BuildContext context) { return new MaterialApp( home: new Scaffold( body: new Center( child: new Text( "This is Text" ), ), ), ); }
image.png就這么簡單我們完成了第一個 Text 控件的使用,new Text("This is Text")
.
這個我們只需要查看一下 Text 的構造方法就知道了。
const Text(this.data, { Key key, this.style, this.textAlign, this.textDirection, this.locale, this.softWrap, this.overflow, this.textScaleFactor, this.maxLines, this.semanticsLabel, })
日期:2018-10 瀏覽次數(shù):7355
日期:2018-12 瀏覽次數(shù):4424
日期:2018-07 瀏覽次數(shù):4959
日期:2018-12 瀏覽次數(shù):4259
日期:2018-09 瀏覽次數(shù):5596
日期:2018-12 瀏覽次數(shù):10013
日期:2018-11 瀏覽次數(shù):4897
日期:2018-07 瀏覽次數(shù):4665
日期:2018-05 瀏覽次數(shù):4951
日期:2018-12 瀏覽次數(shù):4400
日期:2018-10 瀏覽次數(shù):5225
日期:2018-12 瀏覽次數(shù):6299
日期:2018-11 瀏覽次數(shù):4554
日期:2018-08 瀏覽次數(shù):4680
日期:2018-11 瀏覽次數(shù):12743
日期:2018-09 瀏覽次數(shù):5664
日期:2018-12 瀏覽次數(shù):4929
日期:2018-10 瀏覽次數(shù):4266
日期:2018-11 瀏覽次數(shù):4615
日期:2018-12 瀏覽次數(shù):6149
日期:2018-06 瀏覽次數(shù):4092
日期:2018-08 瀏覽次數(shù):5539
日期:2018-10 瀏覽次數(shù):4537
日期:2018-12 瀏覽次數(shù):4623
日期:2018-07 瀏覽次數(shù):4450
日期:2018-12 瀏覽次數(shù):4599
日期:2018-06 瀏覽次數(shù):4481
日期:2018-11 瀏覽次數(shù):4458
日期:2018-12 瀏覽次數(shù):4337
日期:2018-12 瀏覽次數(shù):5360
Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.