-
-
Save icebeam7/d4fb9c7257323dfed597e9fef81ff1c5 to your computer and use it in GitHub Desktop.
App.csml.cs
This file contains 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
using Xamarin.Forms; | |
namespace ICTalkMobileApp | |
{ | |
public partial class App : Application | |
{ | |
public App() | |
{ | |
InitializeComponent(); | |
MainPage = new Views.AnalisisImagenView(); | |
} | |
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