Quantcast
Channel: Xamarin.Forms — Xamarin Community Forums
Viewing all articles
Browse latest Browse all 58056

ScrollView inside StackLayout not visible.

$
0
0

I am using following code. I am executing the app in windows phone 8. In output screen I can see only titleLable(Label) and nextButton (Button). ScrollView is not visible nor any component inside it.

ContentPage.Content = new StackLayout
{
    Children = 
        {
            titleLabel,
            new ScrollView
            {
                Content = new StackLayout
                {                            
                    Children =
                    {
                        someEntry,
                        someEditor,
                        someLabel
                    },
                }
            },
             nextButton
        }
};

Viewing all articles
Browse latest Browse all 58056

Trending Articles