Bottom Navigation in flutter

Bottom Navigation Bar In Flutter is used to load the screens at one place. The Title and icons are placed at bottom of the screen. Particular screen loads by clicking on the name or the icon. We creates the routes at the bottom of the screen. When any bottom item clicked the screen loads. The …

Bottom Navigation in flutter Read More »

Pull To Refresh In Android Studio

Pull To Refresh in Android is used to refresh the data by dragging the screen from the top. This is happen only in android devices. There are many options for reloading the data but we will use Facebook’s SwipeRefreshLayout dependency. How To Implement Pull To Refresh In Android Studio To implement Pull To Refresh in …

Pull To Refresh In Android Studio Read More »

Android App Developer

Android App Developer is that person who makes or develops the applications for android mobiles. The Android Developer makes apps for the native android devices. Android software development is the process by which applications are created for devices running the android operating system. Who is Real Android App Developer Anyone who has the skills of …

Android App Developer Read More »

TextFormField in flutter

TextFormField widget is used to take input from the user in flutter. This is a simple and easy user input widget in flutter. We can perform any operation on that user input data using TextFormField. You can use that user input, can send and show that input. You can store it into a TextEditingController type …

TextFormField in flutter Read More »

TextField In Flutter

TextField in flutter is used to take the input from the user. There are several ways to take the input from the user in flutter. But we are going to discuss the mainly used textfield in flutter. TextField in Flutter We can take input from the user and can use that input to perform any …

TextField In Flutter Read More »

Flutter Camera Example

In this tutorial we will learn how to open the camera in a flutter. And also how to take pictures using the camera. We will open the default camera of the mobile device. We use camera to take pictures and record videos. Add Dependencies in pubspec.yml file Add following dependencies into your pubspec.yml file. Remember while …

Flutter Camera Example Read More »

Tabs In Android Studio Example

In this tutorial we will learn how to create different types of tabs in android studio. We will use android design support and material library to achieve that. Tabs in Android We will learn how to create different types of tabs which are below: Fixed Tabs Full Width Tabs Center Aligned Tabs Scrollable Tabs Tabs …

Tabs In Android Studio Example Read More »

ListView in flutter

In this tutorial we will learn how to create a Listview in Flutter with example. ListView used to show the multiple data one after another in scrolling format in flutter. We can create scrolling behaviour vertically or horizontal. By default its vertical scroll direction. Types of ListView in Flutter Mainly listview in flutter is of …

ListView in flutter Read More »

Scroll to Top