Created
May 10, 2022 02:13
-
-
Save rdelrosario/62c32f489176b1dee131b6d6cabe2f02 to your computer and use it in GitHub Desktop.
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
public partial class LoginPage : StartupPage | |
{ | |
public ICommand NextCommand { get; } | |
public LoginPage() : base() | |
{ | |
InitializeComponent(); | |
NextCommand = new Command(async() => | |
{ | |
await CompleteAsync(new StartupTaskParameters() | |
{ | |
{"Name" , userNameEntry.Text } | |
}); | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment