This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* custom wrapper for AsyncStorage that splits the data of a given storageKey to smaller chunks | |
* a large object with multiple keys will be spreaded to all the keys in the first level of the main object | |
* { data: { key1: value1, key2: value2, ...} } | |
* will be saved as key1 => value1, key2 => value2, ... | |
* this approach is intended to prevent the limitation of 2MB per value of AsyncStorage by spreading the values across the storage | |
* | |
* basic usage: | |
* | |
* import AsyncStorage from '@react-native-community/async-storage'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
} | |
.headline{ | |
font-size:40px; | |
margin-top: 1px; | |
margin-bottom:1px; | |
font-family: 'SchoolCursiveRegular'; | |
font-weight: bold; | |
font-style: normal; |