Provider is a state management package for Flutter that simplifies managing and sharing app state across widgets. Built on top of InheritedWidget, Provider allows you to define state (data) and expose it to widgets without manual prop drilling. Key concepts: ChangeNotifier (mutable state), Consumer (widget that rebuilds when state changes), MultiProvider (combining multiple providers), and typed providers (FutureProvider, StreamProvider) for async operations.