this apps has two text field for first and second number and one button that adds the two number and one text below the text shows the result, so variable for below text is _result, make the ui according to context, make a method that parse string to int or double and store into variableContinue reading “Addition of two numbers in flutter”
Category Archives: Uncategorized
Increment and Decrements app in Flutter
this app shows a counter and two floating button at bottom right, this two button increment, decrements the counter and a text in a center of screen that shows the counter information so let’s start it this tutorial is all about main information. first create the basic ui. the counter information is store in _counterContinue reading “Increment and Decrements app in Flutter”
Stateless vs Stateful Widget
What is State? a state is a information display on ui screen, example a text counter in a center of screen in flutter starting app, the count text is shows the information about counter. Stateless widget? a stateless widget is a ui which once initialized and never be changed, stateless class have build method toContinue reading “Stateless vs Stateful Widget”
What is flutter?
Flutter is cross platform development framework designed to mobile apps for android, ios, you can use flutter for developing web and desktop applications also. flutter is developed by google, flutter is a framework uses a dart language which is similar to the java language, dart also developed by google. Flutter is easy to learn andContinue reading “What is flutter?”