為您解碼網(wǎng)站建設(shè)的點點滴滴
發(fā)表日期:2018-12 文章編輯:小燈 瀏覽次數(shù):2006
做 App 開發(fā),甚至所有前端開發(fā),文本控件應(yīng)該是用的最多的,用戶看到最多的基本上也都是文本控件相關(guān)的,這篇博客詳細介紹一下 Flutter 中的文本控件 Text
在 Flutter SDK 下,
flutter -> widgets -> text.dart
源碼不大,加注釋總共才不到400行。
Text -> StatelessWidget ->Widget -> DiagnosticableTree ->Diagnosticable
,這里可以看出Text 是直接繼承 StatelessWidget的。這里額外結(jié)介紹下Flutter 有兩種狀態(tài)控件:StatelessWidget(無狀態(tài)組件)、StatefulWidget(有狀態(tài)組件),這兩者的區(qū)別可以參考下走路不穿鞋oO作者寫的
Flutter中StatefulWidget控件狀態(tài)管理的兩種方式
這讓我這個習(xí)慣用 XML 畫布局感到特別的不習(xí)慣。
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 的構(gòu)造方法就知道了。
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ù):7353
日期:2018-12 瀏覽次數(shù):4421
日期:2018-07 瀏覽次數(shù):4954
日期:2018-12 瀏覽次數(shù):4253
日期:2018-09 瀏覽次數(shù):5592
日期:2018-12 瀏覽次數(shù):10011
日期:2018-11 瀏覽次數(shù):4894
日期:2018-07 瀏覽次數(shù):4662
日期:2018-05 瀏覽次數(shù):4945
日期:2018-12 瀏覽次數(shù):4398
日期:2018-10 瀏覽次數(shù):5222
日期:2018-12 瀏覽次數(shù):6296
日期:2018-11 瀏覽次數(shù):4552
日期:2018-08 瀏覽次數(shù):4674
日期:2018-11 瀏覽次數(shù):12734
日期:2018-09 瀏覽次數(shù):5660
日期:2018-12 瀏覽次數(shù):4922
日期:2018-10 瀏覽次數(shù):4264
日期:2018-11 瀏覽次數(shù):4613
日期:2018-12 瀏覽次數(shù):6146
日期:2018-06 瀏覽次數(shù):4088
日期:2018-08 瀏覽次數(shù):5534
日期:2018-10 瀏覽次數(shù):4534
日期:2018-12 瀏覽次數(shù):4619
日期:2018-07 瀏覽次數(shù):4446
日期:2018-12 瀏覽次數(shù):4593
日期:2018-06 瀏覽次數(shù):4478
日期:2018-11 瀏覽次數(shù):4455
日期:2018-12 瀏覽次數(shù):4335
日期:2018-12 瀏覽次數(shù):5358
Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.