getx flutter finding controller in widgets
//it uses in top level widget and controller is availlable to its child widget tree
final Your_Controller c = Get.put(Your_Controller());
// to find that controller in child widget where it finds to use controller..
final Your_Controller c = Get.find();