반응형
Notice
Recent Posts
Recent Comments
Link
«   2024/09   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30
Archives
Today
Total
관리 메뉴

welcome to my blog

[Flutter] GetX + obs 업데이트가 안돼 본문

Flutter

[Flutter] GetX + obs 업데이트가 안돼

_annie_ 2021. 11. 26. 20:51
728x90

분명히 Controller도 binding 시켜주고 obs 선언도 해주었는데

값을 바꾸었을때 연결된 UI가 업데이트가 안되는거다!!

며칠간 삽질했는데 

어이없게도 상위위젯을 GetX로 감싸주지않아서 안됐었음..hahahahahahahaahaaaaaa

수정해주니 잘 된다.

 

원래 소스 : 

title : Text(widget.itemText, style: widget.isChecked? TextStyle( decoration: TextDecoration.lineThrough, color: Colors.grey, fontSize: controller.fontSize.value.toDouble()) : TextStyle(fontSize: controller.fontSize.value.toDouble())))

수정된 소스 :

title : GetX<TempController>(builder:(controller){
        return Text(widget.itemText, style: widget.isChecked? TextStyle( decoration: TextDecoration.lineThrough, color: Colors.grey, fontSize: controller.fontSize.value.toDouble()) : TextStyle(fontSize: controller.fontSize.value.toDouble()));
})

 

728x90
반응형