Beispiel #1
0
 public App()
 {
     // The root page of your application
     MainPage = new ChatPage {
         BindingContext = new ChatViewModel()
     };
 }
Beispiel #2
0
        async void OnButtonClicked(object sender, EventArgs args)
        {
            // await label.RelRotateTo(360, 1000);
            // await entry.RelRotateTo(360, 1000);
            var target_page = new ChatPage(entry.Text);

            await Navigation.PushModalAsync(target_page);
        }