Change scrolling upload progress.

This commit is contained in:
Patrick Fic
2025-10-31 11:16:50 -07:00
parent ffcaf5d536
commit f46b96fbd7

View File

@@ -65,7 +65,7 @@ export function UploadProgress({
{ backgroundColor: theme.colors.elevation.level1 },
]}
>
<ScrollView style={styles.modalFill}>
<View style={styles.modalFill}>
<Text variant="titleLarge" style={styles.title}>
{t("general.labels.upload")}
</Text>
@@ -84,6 +84,7 @@ export function UploadProgress({
</>
)}
<Divider style={{ marginVertical: 12 }} />
<ScrollView style={styles.modalFill}>
{Object.keys(photoUploadProgress).map((key) => (
<View key={key} style={styles.progressItem}>
<Text
@@ -112,10 +113,11 @@ export function UploadProgress({
</View>
</View>
))}
</ScrollView>
<Button onPress={handleCancelUploads}>
{t("general.actions.cancel")}
</Button>
</ScrollView>
</View>
</Modal>
</Portal>
);