Created
April 7, 2015 03:03
-
-
Save angelobelchior/ca1ad0a993306fc5ce8f to your computer and use it in GitHub Desktop.
This file contains hidden or 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 override void ViewDidLoad () | |
{ | |
base.ViewDidLoad (); | |
btnSearch.TouchUpInside += async (object sender, EventArgs e) => { | |
var github = new Shared.GitHubApi(); | |
var repositories = await github.GetAsync(txtUser.Text); | |
lvwRepositories.Source = new TableViewSource(repositories); | |
lvwRepositories.ReloadData(); | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment