新手最近在使用Getx做状态管理, 在使用中遇到问题, 随手记录下,
提示错误:
GET the improper use of a getx has been detected you should only use getx or obx for the specific widget that will be updated. if you are seeing this error, you probabaly did not insert any observable variables into GetX/Obx...
其实提示很明显, 就是Obx()中组件没用到controller内容, 比如Obx(()=>Text("123")), 这里面Obx没有用到GetxController的对象, 就会报这个错误,如果改成Obx(()=>Text(controller.content)), 就可以了
网友评论