Guy Tepper

Results 37 comments of Guy Tepper

You need to set `isMenuPrimaryAction` to `true` (Check out [`ContextMenuButton` props](https://github.com/dominicstop/react-native-ios-context-menu#312-contextmenubutton-component))

`2.3.0` is the installed version in the video I've attached. Does the animation work for you in a controlled component?

I've achieved this behavior with `scrollEnabled` prop (undocumented) set to `false` and the `scrollToPage` method: ```jsx function Onboarding() { const pages = useRef(null); useEffect(() => { pages.current.scrollToPage(2); }, []); return...

Hey, thanks for the report! This probably happens because the app has been open since yesterday, so the time formatter compares the current date to yesterday. I thought it was...

Thanks for the report :) The `tomorrow` string comes from [date-fns `formatRelative` localization](https://github.com/date-fns/date-fns/blob/master/src/locale/en-US/_lib/formatRelative/index.js#L5). If we want to fix the issue I guess we'll have to override it, as explained [here](https://stackoverflow.com/questions/47244216/how-to-customize-date-fnss-formatrelative).

@maormagori You're right, it should be available for both platforms. The feature request came from an Android user so that what probably made me label it as such. I also...

The mockup I made in the issue description was actually inspired by Google Maps :P I agree with you that putting the “reset time” button next to the origin/destination tabs...

I would love you to see a PR submitted from you! No better time than [hacktoberfest](https://hacktoberfest.digitalocean.com/) to make a new contribution 😉 I think all work should be done in...

Thanks for the suggestion! Putting it up for grabs since I won't have time to work on this in the upcoming weeks

Hey @De1ain! That's awesome, it's all yours :) Let me know if you need any guidance on implementing it