import React from "react"; import { ScrollView, StyleSheet, Text, View } from "react-native"; import * as Progress from "react-native-progress"; export default function UploadProgress({ uploads }) { return ( {Object.keys(uploads).map((key) => ( {key} ))} ); } const styles = StyleSheet.create({ container: { display: "flex", //flex: 1, }, progressItem: { display: "flex", flexDirection: "row", alignItems: "center", marginBottom: 12, }, progressText: { flex: 1, }, progressBarContainer: { flex: 1, marginLeft: 12, marginRight: 12, }, });