I have the following widget that is required to be part of a column in my flutter application:

I tried to make this widget by creating a row then put a text widget inside that row and then search for a text decoration that provide that 2 lines to each side of the text. But i did not found any decoration that provide this shape. The only decoration that i found is:
Text('OR',
style: TextStyle(
fontSize: 30,
color: Colors.grey,
decoration: TextDecoration.underline
),
)
this will give:

I also thought about another solution that to make each one of these 2 lines a widget and put the 3 widgets (the 2 lines and the text between them) inside a row.
But I think that flutter provide a more easy solution for this.
Any idea will be helpful.