Package and asset updates before expo upgrade.

This commit is contained in:
Patrick Fic
2020-11-09 10:26:36 -08:00
parent 285d3fd91f
commit c7fe5e542d
12 changed files with 9912 additions and 68 deletions

View File

@@ -0,0 +1,16 @@
import React from "react";
import { View, Text } from "react-native";
import * as FileSystem from "expo-file-system";
export default function ScreenMediaCache() {
console.log("DocDir", FileSystem.documentDirectory);
FileSystem.readDirectoryAsync(FileSystem.documentDirectory).then((p) => {
console.log(p);
});
return (
<View>
<Text>This is the media cache screen.</Text>
</View>
);
}