Brewskey / Brewskey.App

Brewskey mobile apps.
https://brewskey.com
3 stars 3 forks source link

dropdown menu on detailsScreens #174

Open AntonPuko opened 6 years ago

AntonPuko commented 6 years ago

instead of only editIcon it should be dropdowns with edit/delete menu items.

AntonPuko commented 6 years ago

this would be easy if there is no a stupid pitfall in android. overflow: visible doesn't work so all nested views are clipped by a parent( https://web.archive.org/web/20160702114556/http://facebook.github.io:80/react-native/docs/known-issues.html#the-overflow-style-property-defaults-to-hidden-and-cannot-be-changed-on-android). Using absolute positions to the full screen as workaround seems not cool. There is also experimental nodes implementation for andorid, which we can enable with some flag on adnroid sourcces, but i coudn't try it. It changes the whole alghorytm of how Views are translated to native android elements

AntonPuko commented 6 years ago

overlow is fixed on android now. So, when somebody reaches this task, it can be implemented.