Serg
Serg
also line 93 in sql.py does not seems to respect id_field property. got a flask error here
I think it's worth to look into [`gestureRecognizer(_:shouldRecognizeSimultaneouslyWith:)`](https://developer.apple.com/documentation/uikit/uigesturerecognizerdelegate/1624208-gesturerecognizer) and [`gestureRecognizer(_:shouldRequireFailureOf:)`](https://developer.apple.com/documentation/uikit/uigesturerecognizerdelegate/1624229-gesturerecognizer) delegate methods. I was nearly able to achieve desired behavior, but seem to miss something since I didn't get it...
OK I'm stuck again. There are two system recognizers we would be probably interested in: * `_UISwipeActionPanGestureRecognizer` which is used for actions (including delete) and we definitely don't want to...
The best debug trick I know is to set a symbolic breakpoint on `-[UIWindow sendEvent:]` and add an automatic debugger command `po [[[$arg3 allTouches] anyObject] gestureRecognizers]` and enable automatic continue....
Ha, scroll view exposes it's pan gesture recognizer :) so the workaround just got a lot better. Please see the #8
I just noticed that proposed solution might be not optimal. What I did was to require all other gesture recognizers to fail (basically force-included all gestures to fall into the...
Sounds reasonable. Maybe a closure in the `EZNavigationConfiguration`? Please let me know if you have a suggestion or feel free to close the PR if your own way :)
I was able to get around this by changing `apiLevel` to 29 in [`app/build.gradle.kts`](https://github.com/andriydruk/swift-weather-app/blob/62233fa5f909c8fac9f67f5484cd6d6d5bc63622/android/app/build.gradle.kts#L16). Now the app does successfully compile and install on device, but unfortunately still fails to run...
@tomlokhorst I would appreciate a review 🙏