holesnap
holesnap
Here is a workaround: Microsoft.Maui.Handlers.PickerHandler.Mapper.AppendToMapping("PickerMapper", (handler, view) => { if (view is Picker) { handler.PlatformView.TextColor = UIColor.PlaceholderText; var item = ((Picker)view).SelectedItem; if (item != null) { handler.PlatformView.TextColor = UIColor.Black; }...
> From what I can see the issue is the same as #1804. > > @TiicTac54 can you test the nuget generated by this [PR](https://github.com/CommunityToolkit/Maui/pull/1815) and tell me if that...