Hi,
I have a Tab page that has two tabs.....as below...
class MainTabPage :TabbedPage
{
public MainTabPage()
{
this.Children.Add(new HomePage() { Title = "Home" });
this.Children.Add(new NotificationsPage() { Title = "Notifications" });
}
}
My HomePage consists of a few buttons and my NotificationsPage contains an ObservableCollection
When I run my application the HomePage is "waiting" for the NotificationsPage to load before it shows the buttons
I would like my HomePage's content to show up immediately while the "Notifications" tab loads it's data in the background.
Hope the above makes sense
thanks in advance