Hi,
I have put one popup layout in my screen, and have loaded one stack layout into the popup layout.
Here the stack layout contains more rows of data. So i am trying to set scroll view in that popup layout.
Can we set scroll view in the popup layout..
My Code
PopupLayout _PopUpLayout = new PopupLayout ();
PopUpLayout = new StackLayout {
WidthRequest = 300,
HeightRequest = 500,
Children = {
mygrid,
}
};
var scroolview = new ScrollView {
Content = PopUpLayout
};
_PopUpLayout.ShowPopup (PopUpLayout, dummy_Grid, PopupLayout.PopupLocation.Bottom);
Thanks