GridLayout in android

GridLayout In Android Studio is used to show the data in the form of rows and column. It can be a list or static data. We specify the number of rows and columns to divide the list. It is default scrollable layout used in android studio. You can see in the above image, we have

GridLayout in android Read More »

Flutter Widgets with Example

Widgets are building components in flutter which is used to design the component. Widgets are the main block in flutter. You have to start any class by using the stateless or stateful widget. Flutter Widgets Everything we needed to design in flutter is designed using the widgets. Widgets can be visible or invisible. These are

Flutter Widgets with Example Read More »

Flutter Card Example

Flutter Card provide a beautiful look in the flutter app. It consist with a slight shadow which give the separate look from another widgets in flutter apps. Material design library provide the way to create Card in Flutter apps. How To Make Card In Flutter App To make a card in flutter is very simple.

Flutter Card Example Read More »

Flutter Webview

In this tutorial we will learn how to create WebView in Flutter. Loading the web page in flutter is so easy task using the WebView plugin in flutter. We will use the URL of any web page to load it in WebView. Generally WebView in flutter loads the webpage in the application. It took the

Flutter Webview Read More »

Tab Bar In Flutter Example

Tab Bar in Flutter is used to create the tabs on top or bottom of the screen. Tabs give smooth moving between screens. We create Tab Bar when we want to navigate multiple screens from one place. It is simple to create a Tab Bar in Flutter. In this tutorial we will create two Tabs.

Tab Bar In Flutter Example Read More »

Drawer in flutter

Drawer in flutter is a hidden screen which open from left or right side. The Navigation drawer in flutter contains the link of pages and header. Generally an icon and label name is used to show the number of navigation drawer menu in flutter. How To Create Navigation Drawer in Flutter Material design library provide

Drawer in flutter Read More »

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 »