Text and Images in side by side

PHOTO EMBED

Mon Jun 15 2020 12:35:38 GMT+0000 (Coordinated Universal Time)

Saved 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_copyCOPY