GetX State Management | GetX library state management tutorial

GetX State Management : GetX State management usage and implementation is explained in this part of the tutorial with considering a counter example without StatefulWidget in flutter app. In general when we deal with counter example we require a StatefulWidget to make the Text view get the updated information on every button click. Using this … Read more

Fetch image form Camera to ImageView || Camera Intent

  Want to fetch a image from camera and set it to the image view using intent in fragment   First add permission in your manifest file   <uses-permission android:name=”android.permission.CAMERA”/>   then setOnClickListener for your image view   imageView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { int permissionCheck = ContextCompat.checkSelfPermission(getActivity(), Manifest.permission.CAMERA); if (permissionCheck == … Read more

Show Buttons
Hide Buttons