Is there a built in widget in Flutter to create a divider with text in the middle? Any guide on how to do it? Like this: (the \"OR\" text in the middle of horizontal line)
You can try to use the Row widget.
Row( children: [ Expanded( child: Divider() ), Text("OR"), Expanded( child: Divider() ), ] )