Beginner
Flutter
Q15 / 100
Which widget is used to add space/padding inside another widget's boundaries?
Correct! Well done.
Incorrect.
The correct answer is C) Padding
C
Correct Answer
Padding
Explanation
The Padding widget insets its child by the given padding specified via EdgeInsets (e.g., EdgeInsets.all(8.0) or EdgeInsets.symmetric(horizontal: 16)). Container can also apply padding via its padding property.
Progress
15/100