Reputation: 179
I have a popup on click of a list view. Is it possible to include Tabbed page in the popup with two tabs?
Upvotes: 1
Views: 477
Reputation: 3401
If you want tabs without having a TabbedPage
in Xamarin.Forms, you can use those custom tabs:
https://github.com/roubachof/Sharpnado.Presentation.Forms#pure-xamarinforms-tabs-no-renderers
These are simple xamarin forms views, you can put them everywhere you like.
Upvotes: 1
Reputation: 12723
Not sure what effect is your want.Follow is one way :
async void OnAlertYesNoClicked (object sender, EventArgs e)
{
bool answer = await DisplayAlert ("Question?", "Would you like to play a game", "Yes", "No");
Debug.WriteLine ("Answer: " + answer);
}
Upvotes: 1