Space between Flex Repeater instances

Hi Team,

I have a Flex container and inside it i have a Flex Repeater and Label. On the Flex Repeater i have Labels which looks something like this.
image
when i have one instance.

image
when i have 2 instances.

i want it to look something like this without spacing.
image
image

You likely have a padding value set on your embedded view's root container. Adjust/remove that padding value and use gap in the flex repeater's props.style to control the spacing between instances.

Thanks, gap-row works.