Last active
June 16, 2016 18:56
-
-
Save smetlov/f225cc2a9fc51eb81893d0b322057941 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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