Can you make widgets with Flutter?

Yes you can create your own widget . For example, as you stated above, you can create a custom button using code like the one below. The properties that you see inside the OutlineButton constructor build the button with a red background color, a circular border-radius of 32px and a text.

Read more

What is Flutter widget tree?

The widget tree is how you create your UI; you position widgets within each other to build simple and complex layouts . Since just about everything in the Flutter framework is a widget, and as you start nesting them, the code can become harder to follow.8 Ara 2019

Read more