Manuel González Villegas

Results 4 issues of Manuel González Villegas

We received a crash from a user interacting with ImageViewer. We are using 0.5.0 version. Device crash info: Android 8.0.0 Device: WAS-LX1A ``` Fatal Exception: java.lang.IllegalArgumentException: View=DecorView@9fde4cf[] not attached to...

Swift: ``` .reduce(0, +) ``` Translated: ``` .reduce(0, +) ``` Should be translated to: ``` .fold(0.0) { total, next -> total + next } ```

enhancement

``` if let intent = coordinator.methodName(param1: param1, param2: param2, onComplete: { self.view.let { self.navigationManager.dismiss(view: $0, animated: true) } }) { navigationManager.show(intent, animation: .present) } ``` Translated: ``` val intent =...

bug

Swift: ``` guard array.count > row, let a = CustomView.viewFor(item: array1[column].array[row]), let b = something(a) else { return UIView() } ... ``` Tool Return: ``` val a = CustomView.viewFor(item =...

bug