The Container is a Flutter widget that allows you to customize, compose, decorate and position its
child
widget.
Options
Discussion
No comments yet. Be the first to comment.
Be respectful. No spam.
Correct Answer:
A
Explanation
:
Q: 2
If you install the Flutter SDK on your computer and configure it as a plug-in for Android Studio or
another IDE software, Android Studio will be able to create Flutter apps.
Options
Discussion
No comments yet. Be the first to comment.
Be respectful. No spam.
Correct Answer:
A
Explanation
:
Q: 3
You may add a lot of properties to your Container widget such as background color, size, padding,
margins, borders or the shape of text, and other properties.
Options
Discussion
No comments yet. Be the first to comment.
Be respectful. No spam.
Correct Answer:
A
Explanation
:
Q: 4
In Flutter, AlertDialog Widget is similar to a small interface which appears for a few seconds at the
bottom of the app user interface when the app user takes a specific action such as clicking a button.
Options
Discussion
No comments yet. Be the first to comment.
Be respectful. No spam.
Correct Answer:
B
Explanation
:
Q: 5
The Container is a Flutter widget that allows you to customize, compose, decorate and position its
child
widget.
Options
Discussion
No comments yet. Be the first to comment.
Be respectful. No spam.
Correct Answer:
A
Explanation
:
Q: 6
Which of the following property should you use to add a label, icon, and an inline hint text to the
TextField widget ?
Options
Discussion
No comments yet. Be the first to comment.
Be respectful. No spam.
Correct Answer:
B
Explanation
:
Q: 7
A floating action button in Flutter development is by default a circular icon button, and you should
add the Icon widget as a child widget of FloatingActionButton widget.
Which of the following choices is correct to add a phone icon to the FloatingActionButton widget in a
Flutter app ?
Options
Discussion
No comments yet. Be the first to comment.
Be respectful. No spam.
Correct Answer:
C
Explanation
:
Q: 8
Assume that you have a Flutter app and the code of main.dart file is as follows:
Check the images in this question and answer which of these images is the run output of this app?
Options
Discussion
No comments yet. Be the first to comment.
Be respectful. No spam.
Correct Answer:
B
Explanation
:
Q: 9
This widget is used to wrap a Column, Row, Container, or other widgets. This widget adds a filling size
around the child widget.
Which of the following term is this definition for?
Options
Discussion
No comments yet. Be the first to comment.
Be respectful. No spam.
Correct Answer:
C
Explanation
:
Q: 10
The image in this question is a part of Flutter app interface which includes four TextFields. When the
app user types anything in the password TextField, all the characters in the text field are replaced
with stars to hide the user's passworD. To do this, you should add a specific property to the password
TextField
widget.
Which of the following choices is the property and what property value should one add to the
password
TextField widget to get this type of secure input ?