yk1711

Results 3 comments of yk1711

I've noticed inconsistency / ambiguity in the casing recommendations as well: Examples in the docs use camelCase for props and events ([example](https://vuejs.org/guide/components/events.html#usage-with-v-model)). [Prop name casing](https://vuejs.org/style-guide/rules-strongly-recommended.html#prop-name-casing) section in the style guide...

When debugging the same issue, I noticed that changing the type of action dispatch from `JUMP_TO` to `NAVIGATE` fixes it for me: https://github.com/expo/expo/blob/20578c4a96732f6f6e9b9be0dbaea5e4018f32a8/packages/expo-router/src/ui/TabTrigger.tsx#L184 Change both calls of this dispatch to...

This patch seems to work properly for me, tested in ios and android simulators. The handling of pressing on tab is taken from `@react-navigation` built-in BottomTabBar press handling, which doesn't...