DEV Community

Discussion on: Using AWS Cognito with Xamarin Forms

Collapse
 
pietervdw profile image
Pieter van der Westhuizen • Edited

Hi Alfred,

Thank you for reading the post! Glad it's useful.
The UI for the MainPage only consist of a one button and a label. When tapping the button you are then taken to the AWS Cognito UI and after entering your credentials you are redirected back to the MainPage and the label should show the access token.

The LoginCommand does most of the work and you can see the code that gets executed in the ExecuteLoginCommand() method. Take a look at the code for this post on GitHub: github.com/Pietervdw/xamarinforms-...

Hope this helps! If not, feel free to ask me more questions.

-P

Collapse
 
alfredconlan profile image
Alfred Conlan

Thank you Pieter!