Provider

Share state across the widget tree

Provider is Flutter's recommended way to share state across the widget tree without passing data through every level.

App (data)
PageA (data)
Section (data)
Button (data)

Data must pass through every widget, even those that do not use it.