Skip to content

Instantly share code, notes, and snippets.

@FraukeN
Created May 5, 2018 11:21
Show Gist options
  • Save FraukeN/db44d571a7d0f1a4ae36efa6edc16fbc to your computer and use it in GitHub Desktop.
Save FraukeN/db44d571a7d0f1a4ae36efa6edc16fbc to your computer and use it in GitHub Desktop.
OverviewPage with data loading in OnAppearing
public partial class OverviewPage : ContentPage
{
private OverviewVM _viewModel;
public OverviewPage()
{
InitializeComponent();
_viewModel = new OverviewVM();
BindingContext = _viewModel;
}
protected override async void OnAppearing()
{
base.OnAppearing();
await _viewModel.LoadData();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment