How to Create Rounded Corners in Flutter

Rounded corners are beautiful and sometimes outclass components with sharp corners. In this flutter tutorial, let’s check how to create rounded corners. The ClipRRect widget is used to create rounded corners. It accepts the borderRadius property and we can use it to define border-radius. Following is the code to create rounded corners. And here’s the…

How to Create Swipeable Screens in Flutter

Swipeable screens are capable of making your mobile app user interface very beautiful. They are mostly used in scenarios such as app introduction sliders. Let’s see how to add swipeable screens in Flutter. You need PageView widget and PageController class to create swipeable screens in Flutter. The PageController defines which screen you want to show…

How to Create a Vertical Line in Flutter

Dividers are used to distinguish different components used in your mobile app. In this blog post, let’s check how to create a vertical divider or vertical line in Flutter. We use the VerticalDivider widget to create a vertical line in Flutter. The VerticalDivider has useful properties such as width, thickness, color, indent, endindent, etc. You…