Skip to content

Instantly share code, notes, and snippets.

@BryanOroxon
Created December 30, 2019 18:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BryanOroxon/5ba0a2d075233b2ce73ed2d35d70953c to your computer and use it in GitHub Desktop.
Save BryanOroxon/5ba0a2d075233b2ce73ed2d35d70953c to your computer and use it in GitHub Desktop.
HomePage.xaml.cs.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace GifInMotion.Views
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class HomePage : ContentPage
{
public HomePage()
{
InitializeComponent();
}
private async void BtnCarouselView_Clicked(object sender, EventArgs e)
{
await Navigation.PushAsync(new Views.MoviesCarousel());
}
private async void BtnCollectionView_Clicked(object sender, EventArgs e)
{
await Navigation.PushAsync(new Views.CollectionMovies());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment