Artiom
Artiom
Still reproducing with react-native 0.66.2 and rnn 7.23.1
Workaround is to update tab title when app goes to "active" app state. I've wrote a wrapper to use it on component registration: ``` export function BottomTabNameCorrector( tabId: string, Component:...
> @13thdeus Hi. I'm trying to implement your workaround, but I can't figure out how did you get `bottomTabsLayout`. How can I import it? It is an objct you've passed...
Got the same issue but using react-native-navigation (not react-navigation), so there are no react-native-screens package. Issue was peproducing only on android 12 for input inside scroll view. FIxed by setting...
@Jethro87 did you find solution? I'm facing same issue
I've found adding window toolbar cause this issue. In my case I need it to move window control buttons (traffic lights) down a bit Here are some details: main.dart content...
Finally I've managed how to achieve effect I've wanted. I've deleted NSToolbar and used DragToMoveArea from this package to replace toolbar features (double click and drag). Then I've reimplemented [this...
I needed to select class by its generic type. Here is code based on @rrousselGit solution ```dart class Par {} class Par1 extends Par {} class Par2 extends Par {}...