jakeorbtl

Results 4 comments of jakeorbtl

Unfortunately, I don't know how to disable system gestures altogether (without messing with native code), but there is a way to at least override the functionality of the gestures. React...

This still seems to be an issue so many years later. Are there any plans to fix this?

Also having this problem. I tried typecasting the the rootViewController like this: `UIViewController *rootViewController = (HomeIndicatorViewController *) [self.reactDelegate createRootViewController];` and this: `UIViewController *rootViewController = [HomeIndicatorViewController new];` `rootViewController = (HomeIndicatorViewController *)...

Well the package is working as intended now, and the reason is that I replaced `UIViewController *rootViewController = [self.reactDelegate createRootViewController];` with `UIViewController *rootViewController = [HomeIndicatorViewController new];` and it worked. I...