Ramiro Blázquez

Results 13 comments of Ramiro Blázquez

i have the same "bug" Check the explanation here https://github.com/ammarahm-ed/react-native-mmkv-storage/issues/286 Seems that the Key Value doesn't overwrite the value, just add a new row into the storage. @mrousavy Please @ryskin...

I am having a similar issue, The thing is like this tmp/A --x.bin --y.bin --a.json tmp/B --x.bin --y.bin --a.json Then I zip: zip([tmp], 'tmp/out.zip'] the out.zip only contains a file...

> > I am having a similar issue, The thing is like this > > tmp/A --x.bin --y.bin --a.json tmp/B --x.bin --y.bin --a.json > > Then I zip: zip([tmp], 'tmp/out.zip']...

No, this doesn't affect reading the data. But the amount of storage uses in the filesystem grows and grows... Maybe the problem is how the set is implement into the...

wait, if you do this MMKV.set('a', 1) MMKV.set('a', 1) MMKV.set('a', 1) MMKV.set('a', 1) the results should be ``` 'a':1 'a':1 'a':1 'a':1 ``` instead of: ``` 'a':1 ``` How should...

I am also trying to understand what is the best way to implement different roles, any idea or documentation? Also I need to populate the role into the claims to...

Try to import and load the font ``` import Ionicons from 'react-native-vector-icons/Ionicons' Ionicons.loadFont() ```

> > import Ionicons from 'react-native-vector-icons/Ionicons' > > Ionicons.loadFont() > > Thanks, it works for me! Do you know why this is needed? In the end, it makes sense because...

@shawarmaz this is dangerous because you can get into two cases: 1 -> async delete, then async write -> maybe write is too slow so there is no advantage to...