Search code examples
xamarin.iosxamarin-forms-4

not a valid calendar for the given culture.parameter name: value


here is my scenario. i build xamarin forms app. when the user device language is English it works fine..but in Arabic language . any page he open that contains DatePicker or datetime the app crashes ..any help please.


Solution

  • Try specifying a locale when using the date value from the image picker

                   var dateFormatter = new NSDateFormatter
                    {
                        DateFormat = _dateFormatString
                    };
    
                    var enLocale = new NSLocale("en_US");
                    dateFormatter.Locale = enLocale;
    
                    sender.Text = dateFormatter.ToString(modalPicker.DatePicker.Date);