Text and Images in side by side
Mon Jun 15 2020 12:35:38 GMT+0000 (UTC)
Posted by
@pratik.gtm
#dart
Text('Click \u{2795} to add')
RichText( text: TextSpan( children: [ TextSpan( text: "Click ", ), WidgetSpan( child: Icon(Icons.add, size: 14), ), TextSpan( text: " to add", ), ], ), )
content_copy Copy
Comments