Marshall Weir

Results 8 comments of Marshall Weir

I'd be inclined to add a new extension method `forwardNavigationResult` similar to `registerForNavigationResult`. The forward version of the function would still register a result channel like normal, but it would...

That looks like what I had in mind. I like that the forwarding is set up on the launch side of the navigation as this means the destination doesn't need...

Edit: actually answer the correct question What I have is a case where I have `ParentFragment` that contains `ChildFragmentOne` where say the `ParentFragment` is a toolbar and bottom bar, and...

Sorry for the delay, here's an example showing the navigation I'm struggling with: https://github.com/splitwise/Enro/tree/embedded-fragment-demo [Here](https://github.com/splitwise/Enro/blob/34ba11a3e5b056a6cfb7f7500e70f508cf145d84/example/src/main/java/dev/enro/example/EmbeddedFragment.kt#L47) you can see the navigation I'm having to use to get the navigation stack to...

The embedded fragment example works great. I was able to remove almost all of my custom embedded fragment handling code by using the 2.0.0 code for this.

Thanks @joshuatam! I think this is a slightly less dirty version of the fix: ``` objective-c NSString* result = aCondition; NSRange testRange = NSMakeRange(0, result.length); for (int i = 0;...

As a quick fix, you can set `ENABLE_STRICT_OBJC_MSGSEND = NO` in your build settings

After some more looking, changing the setting only works if you are not building for arm64. If you want to build for arm64, you need to change the `has_many_imp` and...