Skip to content

Instantly share code, notes, and snippets.

@smetlov
Last active June 16, 2016 18:56
Show Gist options
  • Save smetlov/f225cc2a9fc51eb81893d0b322057941 to your computer and use it in GitHub Desktop.
Save smetlov/f225cc2a9fc51eb81893d0b322057941 to your computer and use it in GitHub Desktop.
namespace CustomBottomMenu.Droid
{
[Activity(Label = "CustomBottomMenu", Icon = "@drawable/icon", MainLauncher = true,
ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation,
Theme = "@style/AppTheme")]
public class MainActivity : FormsAppCompatActivity
{
protected override void OnCreate(Bundle bundle)
{
ToolbarResource = Resource.Layout.toolbar;
base.OnCreate(bundle);
Xamarin.Forms.Forms.Init(this, bundle);
LoadApplication(new App());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment