What is a Widget in Flutter?

Answer

In Flutter, everything is a Widget. Widgets are the fundamental building blocks of the UI — they describe what the view should look like given the current configuration and state. From a simple Text label to complex screen layouts, gestures, and animations, everything is a widget. Flutter UIs are built by composing a tree of widgets together, each responsible for a small part of the display.