Flutter TextEditingController | Widget of the Day | Controllers

  Flutter TextEditingController : Flutter TextEditingController is used fetch the data from TextFormField, with the help of the controller we can access the user input and process accordingly. You can make use of the listeners and get to know the updated text which user enters into the text fields and can process them accordingly. The … 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

Android email validation || Valid email id

  Android email validation : In android apps we generally use email-id’s to make user login, or to perform any other operations required for users. So we need to validate the email address before we accept it thought we cannot confirm the validity of the email address but we can confirm the pattern of the … Read more

Installation of Local Server || Local Host || Wamp Server Installation

Wamp Server Installation and its usage shown in this part of blog, Local Server is quite useful when you are in development stage of your app or website. Here i will be explaining you how to install the wamp local server onto your system and configure it. Make sure there is sufficient storage and system … Read more

Show Buttons
Hide Buttons