Is there any way to store values other than strings with AsyncStorage? I want to store simple boolean values for example.
AsyncStorage.setItem('key', 'ok');
Is no problem, but:
AsyncStorage.setItem('key', false);
Does not work..
Is there any way to store values other than strings with AsyncStorage? I want to store simple boolean values for example.
AsyncStorage.setItem('key', 'ok');
Is no problem, but:
AsyncStorage.setItem('key', false);
Does not work..