Issue
How can I do something like this with flutter
Solution
You can use a row with expanded and a text between them
Row(
children: [
Expanded(
child : Container(
height: 2,
color: Colors.black
)
),
Text('some text here'),
Expanded(
child : Container(
height: 2,
color: Colors.black
)
),
]
)
Answered By - Kaushik Chandru Answer Checked By - Timothy Miller (PHPFixing Admin)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.