I'm trying to display a form in Syncfusion SfRotator
control. I have tried to use a StackLayout
inside the rotator, and it won't work. The rotator will be loaded, but it doesn't show anything.
var item = new SfRotatorItem();
item.ItemContent = new StackLayout
{
Children =
{
new Label {Text = "f", HorizontalTextAlignment = TextAlignment.Center, TextColor = Color.White, },
Entry,
Btn,
noteLbl,
}
};
rotator.DataSource.Add(item);
ItemContent
accepts a view
, I'll be grateful if you could help me with this or suggest another approach to show multiple controls in each page to create a progressive form.