I hereby claim:
- I am willbuildapps on github.
- I am willbuildapps (https://keybase.io/willbuildapps) on keybase.
- I have a public key ASCjgMA37ED9jL3LMSzM41mLVnNpMAFvnGvdDYmkSG4EYAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| <?xml version="1.0" encoding="UTF-8"?> | |
| <ContentPage xmlns="http://xamarin.com/schemas/2014/forms" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
| xmlns:ios="clr-namespace:Xamarin.Forms.PlatformConfiguration.iOSSpecific;assembly=Xamarin.Forms.Core" | |
| ios:Page.UseSafeArea="true" > |
| using Xamarin.Forms; | |
| using Xamarin.Forms.PlatformConfiguration.iOSSpecific; | |
| namespace iOSEleven | |
| { | |
| public partial class MyUseSafeAreaPage : ContentPage | |
| { | |
| public MyUseSafeAreaPage() | |
| { | |
| InitializeComponent(); |
| using Xamarin.Forms; | |
| using Xamarin.Forms.PlatformConfiguration.iOSSpecific; | |
| namespace iOSEleven | |
| { | |
| public partial class MyLargeTitlePage : ContentPage | |
| { | |
| public MyLargeTitlePage() | |
| { | |
| InitializeComponent(); |
| using Xamarin.Forms; | |
| using Xamarin.Forms.PlatformConfiguration.iOSSpecific; | |
| namespace iOSEleven | |
| { | |
| public partial class MyLargeTitlePage : ContentPage | |
| { | |
| public MyLargeTitlePage() | |
| { | |
| InitializeComponent(); |
| // add using MvvmCross.Binding.iOS.Views.Gestures; | |
| var set = this.CreateBindingSet<TheViewController, TheViewModel>(); | |
| set.Bind (TheControl.Tap()).For(t => t.Command).To(vm => vm.TheCommand); | |
| set.Apply(); |
| // add using MvvmCross.Binding.iOS.Views.Gestures; | |
| var set = this.CreateBindingSet<TheViewController, TheViewModel>(); | |
| set.Bind (TheControl.Tap()).For(t => t.Command).To(vm => vm.TheCommand); | |
| set.Apply(); |
| // add using MvvmCross.Binding.iOS.Views.Gestures; | |
| var set = this.CreateBindingSet<TheViewController, TheViewModel>(); | |
| set.Bind (TheControl.Tap()).For(t => t.Command).To(vm => vm.TheCommand); | |
| set.Apply(); |
| using System; | |
| namespace MonkeyApp.Models | |
| { | |
| public class BaseModel | |
| { | |
| public string Id { get; private set; } = Guid.NewGuid().ToString(); | |
| } | |
| public class Content : BaseModel |