How to create a login screen using Xamarin?

1

What is the best way to create a login screen using Xamarin Studio ? I would like to do a Cross-Platform project, but I wanted to see some examples of Login with c# and preferably using Xamarin .

    
asked by anonymous 01.06.2015 / 15:16

2 answers

2

See more details here: Show me the code

UI Design (Individual do not cross): Andoir and iOS

    
05.06.2015 / 03:46
2

Basically, there are two ways:

  • Through a class that inherits from ContentPage
  •   
  • Through a XAML file
  •  

The best way will be the one that you have the easiest. Depending on how you want your page, you'll have some controls like Label, Entry, and Button.

There is a very interesting file that addresses a specific authentication theme with social networks. In this article, a login screen is created. The link is just below:
link

    
11.09.2015 / 19:48