Tag: beginner flutter code

Flutter: Input TextField with Icon and Style Decoration Code

TextField is one the important form widget in Apps. It is used to get user input data. So in this post we gonna see... Read more »

Flutter Hello World App Code

Creating a hello world app in flutter. import 'package:flutter/material.dart'; void main() { runApp( MaterialApp( home: Center( child: Text('Hello World'), ), ), ); } Read more »