NEW
Font size
WorksheetsW4 session 1 knowledge check
Total questions: 10
Worksheet time: 5mins
Which widget is used to display text in a flutter app
Which widget is used to display an image in a flutter app?
Container
Icon
Row
Which widget is used to group widgets, allowing them to be displayed horizontally?
Row
Column
Container
Which widget is used to group widgets, allowing them to be displayed vertically?
Container
Row
Column
Text
What widget is used to create a scrollable list of items in a Flutter app?
What is the primary purpose of the runApp() function in a Flutter application?
Which widget is typically used as the root widget of a Flutter application?
BuildContext
StatefulWidget
StatelessWidget
What does the BuildContext parameter represent in the build() method of a widget?
In which scenario would you prefer using a StatefulWidget over a StatelessWidget?
When you need to update the UI based on user interactions or data changes during runtime.
When you need to display static content that does not change over time.
When you want to improve performance by avoiding unnecessary rebuilds.
When you want to create a simple layout without any dynamic behaviour.
When using MaterialApp, which of the following is NOT a typical property you can set?
title
theme
context
home
