Flutter create Vertical ScrollView with multiple child widgets using SingleChildScrollView

In flutter there are 11 different type of widgets available to achieve scrolling functionality with different task. To create a simple vertical ScrollView which can contain different type of widgets with different behavior we would use SingleChildScrollView widget. This widget can show multiple widgets inside it. So in this tutorial…
Set TextField Text Input type Password in Flutter using obscureText

obscureText parameter is used in TextField widget to automatically convert all the entered text into U+2022 BULLET characters. They look like bullet DOT inside Text Field widget. This parameter is mostly used to hide typed text inside Text Field like password typing. This would make the typing secure. obscureText cannot…
Get TextField Text Input Entered Value on Button click in Flutter

TextField widget in flutter has controller argument which controls the entered edited text. We have to create a TextEditingController() object which controls the controller. In flutter we cannot directly retrieve Text Input value, we have to get this using controller object. We would use StatefulWidget widget in our tutorial in…