Learning Flutter || Section 1 : Introduction to Flutter Tutorials
Flutter is Google’s UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop from a single codebase.
Now , I'm going to post daily Flutter basic Widgest Examples ,so the beginners can easily Avail Knowledge of Flutter Basic .you can also Follow my Github Account to get Source code Easily and Modify by Yourself.
1.Basic widgets
Flutter comes with a suite of powerful basic widgets, of which the following are commonly used:
Text- The
Textwidget lets you create a run of styled text within your application. Row,Column- These flex widgets let you create flexible layouts in both the horizontal (
Row) and vertical (Column) directions. The design of these objects is based on the web’s flexbox layout model. Stack- Instead of being linearly oriented (either horizontally or vertically), a
Stackwidget lets you place widgets on top of each other in paint order. You can then use thePositionedwidget on children of aStackto position them relative to the top, right, bottom, or left edge of the stack. Stacks are based on the web’s absolute positioning layout model. Container- The
Containerwidget lets you create a rectangular visual element. A container can be decorated with aBoxDecoration, such as a background, a border, or a shadow. AContainercan also have margins, padding, and constraints applied to its size. In addition, aContainercan be transformed in three dimensional space using a matrix.
2.Layouts in Flutter
Contains row and column widget architecture , navigation route ,image assets how to use , we will learn shortly in our upcoming post .
3.Animations in Flutter
4.Advanced UI
5.Packages and Plugins
6.And many more ......
in next part we will continue with our Examples ......
Comments