Intermediate Flutter
Q43 / 100

What is InheritedWidget used for in Flutter?

Correct! Well done.

Incorrect.

The correct answer is B) A base class for widgets that efficiently propagate information down the widget tree

B

Correct Answer

A base class for widgets that efficiently propagate information down the widget tree

Explanation

InheritedWidget propagates data down the widget tree without passing it through constructors. Descendants access it via BuildContext.dependOnInheritedWidgetOfExactType(). It is the foundation for Provider, Theme, and MediaQuery.

Progress
43/100