I'm creating a method to open any screen I pass in the parameter.
I did this method:
public async Task NavigateTo(Page page)
{
await App.MasterDetail.Detail.Navigation.PushAsync(new page());
}
But every time I'll compile from an error
CS0118 "page" é um variável, mas é usado como um tipo
What do I need to do to work?