最近一直在用flutter做app,感覺(jué)就像用vue或react寫web頁(yè)面一樣,蠻好玩的。為了加深自己對(duì)Flutter的理解,記錄一下自己的學(xué)習(xí)心得。
成都創(chuàng)新互聯(lián)公司專業(yè)提供德陽(yáng)服務(wù)器托管服務(wù),為用戶提供五星數(shù)據(jù)中心、電信、雙線接入解決方案,用戶可自行在線購(gòu)買德陽(yáng)服務(wù)器托管服務(wù),并享受7*24小時(shí)金牌售后服務(wù)。看源碼就知道這三者的關(guān)系了,代碼如下:
abstract class Widget extends DiagnosticableTree { const Widget({ this.key }); final Key key; @protected Element createElement(); static bool canUpdate(Widget oldWidget, Widget newWidget) { return oldWidget.runtimeType == newWidget.runtimeType && oldWidget.key == newWidget.key; } }abstract class StatelessWidget extends Widget { const StatelessWidget({ Key key }) : super(key: key); @override StatelessElement createElement() => StatelessElement(this); @protected Widget build(BuildContext context); }abstract class StatefulWidget extends Widget { const StatefulWidget({ Key key }) : super(key: key); @override createElement() => StatefulElement(this); @protected State createState(); }
StatelessWidget沒(méi)有狀態(tài),可以類比react中的傻瓜組件;
StatefulWidget有狀態(tài),狀態(tài)存在State對(duì)象中;所以一般說(shuō)的生命周期都是指的是State的生命周期;
abstract class State extends Diagnosticable { void initState() { } void didChangeDependencies() { } Widget build(BuildContext context); void setState(VoidCallback fn) {} void deactivate() { } void dispose() { } void reassemble() { } void didUpdateWidget(covariant T oldWidget) { } }
為了驗(yàn)證State的生命周期,我的操作是從Home->page1->page2->page1->Home
從Home->page1,這是初始化的過(guò)程
I/flutter ( 4980): [debug],[lifeCycle], initState I/flutter ( 4980): [debug],[lifeCycle], didChangeDependencies I/flutter ( 4980): [debug],[lifeCycle], build
從page1->page2,相當(dāng)于page1被暫時(shí)移出
I/flutter ( 4980): [debug],[lifeCycle], deactivate I/flutter ( 4980): [debug],[lifeCycle], didChangeDependencies I/flutter ( 4980): [debug],[lifeCycle], build
從page2->page1,相當(dāng)于page1又被移回來(lái)了
I/flutter ( 4980): [debug],[lifeCycle], deactivate I/flutter ( 4980): [debug],[lifeCycle], didChangeDependencies I/flutter ( 4980): [debug],[lifeCycle], build
從page1->Home,相當(dāng)于page1被刪除
I/flutter ( 4980): [debug],[lifeCycle], deactivate I/flutter ( 4980): [debug],[lifeCycle], dispose
直接看圖,應(yīng)該很清晰了,
文章題目:用Flutter做APP學(xué)習(xí)心得:Flutterwidget的生命周期-創(chuàng)新互聯(lián)
本文網(wǎng)址:http://jinyejixie.com/article16/dpejdg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供商城網(wǎng)站、Google、App設(shè)計(jì)、手機(jī)網(wǎng)站建設(shè)、響應(yīng)式網(wǎng)站、網(wǎng)站設(shè)計(jì)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容