Member-only story
Vertical Divider Widget in Flutter | Horizontal and Vertical Dividers in Flutter | Flutter Tutorial
In this article we will discuss about vertical divider widget in Flutter.
🎥 Video Tutorial
🔭 Implementation
Whenever it comes to Dividers, We might be aware of the Divider
Widget available in Flutter. But the Divider
Widget will create the dividing line in a horizontal
manner. If there is a case where we need to separate two individual widgets that are placed in a Row
, then we need to go for using Vertical Divider
widget. This Vertical Divider
widget will help us create dividing line in the vertical manner, so we don’t need to look for custom widgets to perform the same.
Consider the above UI layout where these two Text
widgets are place in a Row
. Now let’s try to separate these two widgets using a divider. But the normal Divider widget will only help render the dividing…