Aditya Pahilwani
Aditya Pahilwani
@MCervenka To check MMKV file, you can do this // open terminal // adb shell // cd /data//files/mmkv // ls // cat fileName
@mrousavy I checked it and @MCervenka is correct, storage works the same if keys changed on the fly
@cooperka current the lib access `UIWindow` access by `UIWindow *keyWindow = [UIApplication sharedApplication].keyWindow;` and was deprecated in ios 15 can return nil https://developer.apple.com/forums/thread/695932 and when I debugged this and passed...
@johndpope we managed to solve the issue by accessing the UIWindow by `UIWindow *keyWindow = [[UIApplication sharedApplication] delegate].window;` Opened a PR for the same https://github.com/cooperka/react-native-snackbar/pull/198
@amleonardccsd how did you solved it? I tried to remove mero-confif from resolution field still faces the same issue
I would suggest to bump up your metro version. I faces a similar issue and the issue was with metro version conflicts. Our metro version was 0.56 and when migrating...
Yes that could be a nice addition. I was thinking of adding 2 props for accessible segmentAccessibilityLabel: Array of strings representing accessibilityLabel for segments segmentAccessibilityHint: Array of strings representing accessibilityHint...
initially, I thought about the same but changing the segments array into an array of objects would be a breaking change and for someone who isn't using accessibility keys, it...
I think we should have support for all these in objects, also I would love to pick this task. accessibilitylabel accessibilityhint accessibilityRole accessibilityState
Any update on this ?