Open brendonupson opened 4 years ago
Seems to be same as https://github.com/alexrainman/SegmentedControl/issues/45#event-1231733344
Workaround appears to be to set the WidthRequest property:
var seg = new SegmentedControl
{
...
WidthRequest = 300,
}
When using SegmentedControl on a xaml page, rendering is correct on all platforms (iOS/Android). If I dynamically create a control and add it to a layout:
It does not render correctly on Android, but iOS is ok.