Skip to content

Instantly share code, notes, and snippets.

@rdelrosario
Created May 10, 2022 02:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rdelrosario/62c32f489176b1dee131b6d6cabe2f02 to your computer and use it in GitHub Desktop.
Save rdelrosario/62c32f489176b1dee131b6d6cabe2f02 to your computer and use it in GitHub Desktop.
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