美文网首页
flutter 使用Getx提示错误

flutter 使用Getx提示错误

作者: AbnerZhang | 来源:发表于2022-01-12 11:22 被阅读0次

    新手最近在使用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)), 就可以了

    相关文章

      网友评论

          本文标题:flutter 使用Getx提示错误

          本文链接:https://www.haomeiwen.com/subject/xatwcrtx.html