Anton Shevchenko
Anton Shevchenko
Some not very smart but working solution: my mask `_maskedController = MaskedTextController(mask: '00/00');` and then ``` _maskedController.beforeChange = (String previous, String next) { if (next.length == 3) { if (next[2]...
Решение для Obj (нашел в тикетах) - (YMKAnnotationView *)mapView:(YMKMapView *)mapView viewForAnnotation:(id)annotation { static NSString * identifier = @"pointAnnotation"; YMKPinAnnotationView * view = (YMKPinAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:identifier]; if (view == nil) {...
Same issue here
Any idea how to fix it?