Basic Widget : Text , TextField and Controller (with MaterialApp widget )
TextField TextField is the most commonly used text input widget. TextFormField TextFormField wraps a TextField and integrates it with the enclosing Form . This provides additional functionality, such as validation and integration with other FormField widgets. TextEditingController A controller for an editable text field. import 'package:flutter/material.dart' ; void main() { //Entry Point of our Application /* ........ IMPORTANT FOR ANY MATERIAL WIDGET ......... * first you cannot run Direct TextField Widget in runApp * second you need material widget to use TextField i.e; MaterialApp * third you again need material widget to call inside state widget * .... material widget like Scafold , Material , Car...