-
DataModel
继承自Model
,作为AnimatedBuilder
的animation
-
ScopedModel
是一个Widget
,主要是为了将_InheritedModel
置入AnimatedBuilder
,同时将child
传给_InheritedModel
-
child
指的是ScopedModelDescendant
,实际使用中是子树中包含ScopedModelDescendant
的Widget
- 修改
DataModel
中的数据之后,需要主动调用notifyListeners()
,此方法会调用其监听者
,这里其实就是AnimatedBuilder
的builder
,此过程中新建_InheritedModel
,ScopedModelDescendant
作为_InheritedModel
的child
会触发build
函数,在build
函数中调用我们传入ScopedModelDescendant
的builder
。
网友评论