Open JPfahl opened 2 years ago
Layout does not fill space when device is rotated
reproducable with: new ListView() { ItemsSource = ViewModel.CheckList, ItemTemplate = new DataTemplate(() => { ViewCell viewCell = new XLabs.Forms.Controls.ExtendedViewCell() { View = new StackLayout() { HorizontalOptions = LayoutOptions.FillAndExpand, BackgroundColor = Color.Blue }, };
return viewCell; }) }
ViewCell content would fill avalable space when device is rotated.
Fequently but not always veiwcell content is shifted left or right or both
Working Not Working Working Not Working Working using example code Not Working using example code
None found
I see you're using XLabs.Forms.Controls.ExtendedViewCell() which I don't think has been maintained for a long time. Does the bug also occur if you don't use that?
XLabs.Forms.Controls.ExtendedViewCell()
It still happens if you use new ViewCell()
Description
Layout does not fill space when device is rotated
Steps to Reproduce
reproducable with: new ListView() { ItemsSource = ViewModel.CheckList, ItemTemplate = new DataTemplate(() => { ViewCell viewCell = new XLabs.Forms.Controls.ExtendedViewCell() { View = new StackLayout() { HorizontalOptions = LayoutOptions.FillAndExpand, BackgroundColor = Color.Blue }, };
Expected Behavior
ViewCell content would fill avalable space when device is rotated.
Actual Behavior
Fequently but not always veiwcell content is shifted left or right or both
Basic Information
Environment
Screenshots
Working Not Working Working Not Working Working using example code Not Working using example code
Reproduction Link
Workaround
None found