I want to create layout just like in instagram post description
Something like below image
I know i can use RichText
widgets, but i want use some custom text
widgets
I have tried using 2 way
First using
Wrap widgets
Wrap(
children: <Widget>[
Text(
'UserName',
style: TextStyle(fontWeight: FontWeight.bold),
),
Text(
'Post description',
style: TextStyle(fontWeight: FontWeight.bold),
),
],
)
Using
Row Widgets
Row(
children: <Widget>[
Text(
'UserName',
style: TextStyle(fontWeight: FontWeight.bold),
),
Text(
'Post description',
style: TextStyle(fontWeight: FontWeight.bold),
),
],
)
I have also tried using stack widget but not able to create
If need more information please do let me know. Thanks in advance. Your efforts will be appreciated.