Skip to main content

Posts

Showing posts with the label Features of flutter

Dropdown In Flutter

Dropdown We use the Dropdown Button to display any Dropdown List item as we can change its style according to the requirement. We can customize the dropDown widget with given properties like background color, hint, items, and many more. Let’s see some of the properties of the dropdown button for example. 1. Items We will use this property to define items displayed in the dropdown list as text values. We can define the items directly or we can define using a list. Firstly we can see how to define items directly. We are declaring one global variable and set value 1 so in the dropDown value, we can not see an empty value. and with the use of DropdownMenuItem() we can see the value of that particular item. Let's see the example of how to use items directly:- The second way is to use items property as a list of values and set that values in the Text widget. 2. Value We will use value property to set the selected it...

What is Flutter ? Features of Flutter ?

Flutter is an open-source framework to create high-quality, high-performance mobile applications across different mobile operating systems - Android and iOS. As of now if we have to create an application in two different OS then we have to code in different languages using two different frameworks. To help overcome this complexity, there exist mobile frameworks supporting both OS which is Flutter. These frameworks use the simple HTML-based hybrid mobile application framework which uses HTML for User Interface and JavaScript and application logic to the complex language-specific framework which does the converting code to native code. Features of Flutter 1. Time and Money Saving Flutter is a cross-platform development tool. That means software developers can use the same code base for building  Android ,  iOS , and Web  applications. This cross-platform development is the best way for saving time and you need only one resource for the development process of different ...