Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
[Android] Add constructor to MasterDetailContainer (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
samhouts authored and rmarinho committed Apr 24, 2016
1 parent 462d132 commit af38e6f
Showing 1 changed file with 4 additions and 0 deletions.
@@ -1,5 +1,7 @@
using System;
using Android.Content;
using Android.Content.Res;
using Android.Runtime;
using Android.Views;

namespace Xamarin.Forms.Platform.Android
Expand All @@ -18,6 +20,8 @@ public MasterDetailContainer(MasterDetailPage parent, bool isMaster, Context con
_isMaster = isMaster;
}

public MasterDetailContainer(IntPtr javaReference, JniHandleOwnership transfer) : base(javaReference, transfer) { }

public VisualElement ChildView
{
get { return _childView; }
Expand Down

0 comments on commit af38e6f

Please sign in to comment.