Change scrolling upload progress.
This commit is contained in:
@@ -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>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user