2016-03-22 23:02:25 +03:00
using System ;
using System.Collections.Generic ;
using System.Collections.ObjectModel ;
using System.Linq ;
using System.Text ;
using System.Threading.Tasks ;
using Xamarin.Forms.CustomAttributes ;
2016-04-26 18:20:55 +03:00
using Xamarin.Forms.Internals ;
2016-03-22 23:02:25 +03:00
namespace Xamarin.Forms.Controls
{
[Preserve (AllMembers=true)]
[Issue (IssueTracker.Github, 1722, "MasterDetailPage crashes when assigning a NavigationPage to Detail with no children pushed", PlatformAffected.iOS)]
public class Issue1722 : MasterDetailPage
{
public Issue1722 ( )
{
Master = new ContentPage {
Title = "Master" ,
Content = new Label { Text = "Master" }
} ;
Detail = new NavigationPage ( ) ;
}
}
}