16 lines
284 B
C#
16 lines
284 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Gallery.Resources.UI;
|
|
using Xamarin.Forms;
|
|
|
|
namespace Gallery.Views
|
|
{
|
|
public partial class GalleryItemPage : AdaptedPage
|
|
{
|
|
public GalleryItemPage()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|