Andreas Amsenius

Results 19 comments of Andreas Amsenius

I see this too, @jjdp did you find any workaround?

Has reading/writing settings gotten any further yet? I have some ideas for iago I'd like to try implementing, snapping is my first candidate. So I'd add some menu/gui for the...

Such demo would be grand! I saw something about a slider example, so I would probably want to extend configuration to use that if possible. I'm excited about hacking my...

A config file like the one used by remux would work well I think, just that I need to write to it as well, I'll get there eventually. I'll have...

Inspired by @devmanny 's workaround, here a more generic but still ugly workaround: ``` // blur gets stuck otherwise const workaroundValue = useRef(new Animated.Value(0)); const workaroundStyle = useRef({ opacity: workaroundValue.current.interpolate({...

Adding to this it seems that Android OS version might matter, testing today with android 10, and the breadcrumbs get displayed correctly. The strange issue with duplicates are Android OS...

Interesting! @oblador would you use `Lightbox.Navigator` instead of a regular Navigator if you also have other non-lightbox routes in your app?

I would be a bit anxious replaced the main Navigator in an app. but looking at the code, it seems as it will play along with another parent navigator, if...

I see, but would the idea I described work? (given as the regular Navigator seems to support such use with a parent `navigator` prop, though I haven't tried it myself)

I realize the child `Lightbox.Navigator` needs the full screen to render a lightbox properly... =)