summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls/GalleryPages/MacTwitterDemo.xaml.cs
blob: 2a6b63cd9af4e24d70137ccc4141a2ba8e16a2a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;

using Xamarin.Forms;

namespace Xamarin.Forms.Controls
{
	public partial class MacTwitterDemo : MasterDetailPage
	{
		public MacTwitterDemo()
		{
			InitializeComponent();
			lstTweets.ItemsSource = new string[] { "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12" };
		}
	}
}