update method
当数据发生改变后,需要调用该方法,进行重绘或者重新布局
Implementation
void update([bool relayout = false]) {
if (relayout) {
_notifier.value = actionReLayout.value.wrap();
} else {
_notifier.value = actionInvalidate.value.wrap();
}
}
当数据发生改变后,需要调用该方法,进行重绘或者重新布局
void update([bool relayout = false]) {
if (relayout) {
_notifier.value = actionReLayout.value.wrap();
} else {
_notifier.value = actionInvalidate.value.wrap();
}
}