vonovak / react-navigation-header-buttons

Easily render header buttons for react-navigation
MIT License
894 stars 65 forks source link

Support for Bridgeless #252

Open bekatru opened 1 week ago

bekatru commented 1 week ago

Currently I am on RN 0.76.1.

Discovered one issue related to Overflow menu. Since April 2024 and React Native version 0.75 showPopupMenu and dismissPopupMenu are removed from the UIManager.

Hence, this logic right here breaks. The presenter returned as an empty object and is not callable.

There might be a other issues, but this one was discovered while trying to compile ts code.

vonovak commented 1 week ago

Hey! You will need to implement this yourself with this and providing custom onPress to OverflowMenu

bekatru commented 1 week ago

Sounds good. Thank you for the insight.