Skip to content

Commit f9f6d2f

Browse files
committed
Improved share sending progress to match new/edit screens.
1 parent 91d9e27 commit f9f6d2f

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

src/screens/share/index.js

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,24 @@ export default class ShareScreen extends React.Component {
4242
style={{
4343
position: 'absolute',
4444
top: 0,
45-
height: 200,
45+
height: '100%',
4646
width: '100%',
4747
flex: 1,
4848
justifyContent: 'center',
4949
alignItems: 'center',
50-
zIndex: 10
50+
zIndex: 10,
51+
backgroundColor: App.theme_background_color(),
52+
opacity: 0.7
5153
}}
5254
>
53-
<ActivityIndicator color="#f80" size={'large'} />
54-
<Text style={{ marginTop: 12, color: App.theme_text_color() }}>{ Share.selected_user?.posting.is_sending_post ? "Sending post..." : "Saving bookmark..." }</Text>
55+
<View style={{
56+
height: 200,
57+
justifyContent: 'center',
58+
alignItems: 'center'
59+
}}>
60+
<ActivityIndicator color="#f80" size={'large'} />
61+
<Text style={{ marginTop: 12, color: App.theme_text_color() }}>{ Share.selected_user?.posting.is_sending_post ? "Sending post..." : "Saving bookmark..." }</Text>
62+
</View>
5563
</View>
5664
: null
5765
}

0 commit comments

Comments
 (0)