AppBar
AppBar is a top app bar that follows Material Design guidelines. In Flutter, it is a widget commonly supplied to the appBar property of a Scaffold. The AppBar provides a consistent location for a page title, navigation controls, and action icons, helping users identify the current screen and access common tasks.
Composition and behavior: A typical AppBar includes a leading widget for navigation (such as a back button
Key properties: title defines the primary label, leading sets the widget at the start, and actions holds
Implementation and variants: AppBar implements the PreferredSizeWidget interface, which defines its preferred height. It is typically
See also: Flutter material library and Material Design guidelines.