Open skanderhamdi opened 8 months ago
Is there something we can do to use Gap inside Wrap widget?
Gap
Wrap
Wrap( direction: Axis.horizontal, crossAxisAlignment: WrapCrossAlignment.center, children: [ Text( 'Message', style: Get.textTheme.labelMedium!.copyWith(color: Colors.black.withOpacity(0.5)), maxLines: 1, overflow: TextOverflow.ellipsis, ), const Gap(5), Icon(Icons.circle_rounded, size: 8 color: Colors.black.withOpacity(0.5)), const Gap(5), Text(message, style: Get.textTheme.labelMedium!.copyWith(color: Colors.black.withOpacity(0.5))) ] )
Is there something we can do to use
Gap
insideWrap
widget?