gap
gap copied to clipboard
`Gap` not working with `Wrap`
Is there something we can do to use Gap inside Wrap widget?
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)))
]
)