Skip to content

Instantly share code, notes, and snippets.

xmlns:controls="clr-namespace:MyNamespace.Mobile.Controls"
<!--FolderGrid-->
<Grid x:Name="rootGrid" BackgroundColor="White" Grid.Row="1" Grid.Column="0">
<controls:GridView HorizontalOptions="FillAndExpand"
x:Name="GrdView" ItemsSource="{Binding FoldersInUserPocket}"
ItemHeight="400"
ItemWidth="330"
RowSpacing="30">
<controls:GridView.ItemTemplate>
using System;
using System.Collections;
using Xamarin.Forms;
using Xamarin.Forms.Internals;
namespace MyNamespace.Mobile.Controls
{
/// <summary>
/// Class GridView.
/// </summary>