I want to change the position of my icon so it’s not in line with the text, just want to shift it a bit.
This is the code that I have created, please check it.
Bubble(
margin: BubbleEdges.only(top: 10),
alignment: Alignment.topRight,
nip: BubbleNip.rightTop,
color: Color.fromRGBO(225, 255, 199, 1.0),
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
Text('Bang kuy, adu bola sama rt beside'),
Text("16:55",style: TextStyle(fontSize: 10.0),),
Icon(Icons.done_all, size: 15.0,)
],
)
),
this is the result
I want to make it a little lower, but don’t want to make the bubble bigger.
like this
New contributor
daffa rahman is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.