Flutter – Error: [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
There is no heavy widget, that why I am facing this issue: Code: Obx(()=>InkWell( onTap: (){ controller.login(); }, child: Container( alignment: Alignment.center, height: 50, width: 150, color: Colors.greenAccent, child: Text('Login Here'), ), ), ), I just want to call this…