Search code examples
user-interfacedartfluttermaterial-design

Horizontal divider with text in the middle in Flutter?


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)

here's is the screenshot of what I want to achieve


Solution

  • You can try to use the Row widget.

    Row(
        children: <Widget>[
            Expanded(
                child: Divider()
            ),       
    
            Text("OR"),        
    
            Expanded(
                child: Divider()
            ),
        ]
    )