how to loop inside a Grid

Hi fuse. I know how to use “each” and loop through. But how to do it inside a grid?

         <Grid RowCount="1" Columns="4*,1*" Margin="0,5,0,0" ux:Name="tasksList" Visibility="Visible">
				<Each Items="{items}">
					<vx.Text Row="0" Column="0" Value="{Item_name}" FontSize="15" Color="#fff" TextAlignment="Left" />
					<vx.Text Row="0" Column="1" Value="{Amount}" FontSize="15" Color="#fff" TextAlignment="Right"/>
			    </Each>
		</Grid>

I got my answer from slack. Just remove Row and column, because it will automatically added… ( Added this if someone face the same issue )…