How to push the screen to the new SecondPage() screen?
Navigator.push( context, MaterialPageRoute(builder: (context) => SecondPage()) );
How to place a Text (“Hello”) in the center?
return Scaffold(
body: Center(
child: Text("Hello"),
),
);Omit full StatelessWidget code
Create a text widget with Font Size set to 20, and Bold
Text("Hello", style: TextStyle(fontSize: 20, fontWeight: FontWeight.bold))
How to grey out the button in Flutter?
Add null value to the button’s onPressed parameter
List out the 3 important parameters for Scaffold
List out the 3 important parameters for AppBar
List out the 5 important parameters for MaterialApp
List out the 3 important parameters for Column and Row
Stacks widgets vertically / horizontally
List out the important parameters for Container
List out the important parameter for Center
List out 2 important parameters for Padding
Usually what objects is needed for padding parameter?
EdgeInsects class
List out 3 important parameters for SizedBox
List out the important parameters for TextStyle (Used inside Text)
List out the 3 important parameters for TextField
What is the difference between onPressed and onTap?
List out 2 key parameter for
1. ElevatedButton
2. FilledButton
3. TextButton
List out 2 key parameter for IconButton
List out important parameters for Input Decoration