Skip to content

Instantly share code, notes, and snippets.

@BryanOroxon
Last active December 30, 2019 20:57
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/8e73eb59f76a338eab6f622fd72c76cb to your computer and use it in GitHub Desktop.
Save BryanOroxon/8e73eb59f76a338eab6f622fd72c76cb to your computer and use it in GitHub Desktop.
App.xaml.cs
using System;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace GifInMotion
{
public partial class App : Application
{
public App()
{
InitializeComponent();
MainPage = new NavigationPage( new Views.HomePage());
}
protected override void OnStart()
{
}
protected override void OnSleep()
{
}
protected override void OnResume()
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment