top of page
Search
  • Writer's pictureCedric Gabrang

Xamarin Forms: Creating Simple Login

Updated: Jun 9, 2019


Do you want to explore more?

Are you looking for a Xamarin kickstarter?


In this post, we will create simple login and registration.


Step 1: Right-click on your PCL project then Add > New Item > Content Page.

Name it as LoginPage.



Step 2: Open your LoginPage.xaml and add some label, entry and button controls.



Step 3: Add another ContentPage and name it RegistrationPage and create your registration page layout.



Step 4: Go to LoginPage.xaml once again and add clicked event to your Login and Register buttons.


Go to LoginPage.xaml.cs and under btnRegister_Clicked event, add this:



Step 5: Go to RegistrationPage.xaml once again and add clicked event to your Register button. Go to RegistrationPage.xaml.cs and under btnRegister_Clicked event, add this:

The Application subclass has a static Properties dictionary which can be used to store data. This can be accessed from anywhere in your Xamarin.Forms code using Application.Current.Properties. For more information, visit https://docs.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/application-class



Step 6: Go to LoginPage.xaml.cs and under btnLogin_Clicked event, add this:



Step 7: Build and deploy your app to your emulator or device.


And here’s what the app looks like when is running.



Here’s the VSTS GitHub repo of this demo.


That’s it! Try it yourself!


Until next time. Happy coding!


3,483 views2 comments

Recent Posts

See All

Xamarin Forms: Implementing SQLite Database

SQLite is a software library that provides a relational database management system. The lite in SQLite means light weight in terms of setup, database administration, and required resource. SQLite is t

bottom of page