Hi,
I'd like to create some from pages inside the Rotator, and I'm using `stackLayout` for this.
var item = new SfRotatorItem();
item.ItemContent = new StackLayout
{
//HorizontalOptions = LayoutOptions.CenterAndExpand,
//VerticalOptions = LayoutOptions.CenterAndExpand,
Children =
{
new Label {Text = "f", HorizontalTextAlignment = TextAlignment.Center, TextColor = Color.White, },
Entry,
Btn,
noteLbl,
}
};
rotator.DataSource.Add(item);
The above code doesn't show anything and the page will be empty, please let me know how can I fix it.
Thanks in advanced,