File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -42,16 +42,24 @@ export default class ShareScreen extends React.Component {
42
42
style = { {
43
43
position : 'absolute' ,
44
44
top : 0 ,
45
- height : 200 ,
45
+ height : '100%' ,
46
46
width : '100%' ,
47
47
flex : 1 ,
48
48
justifyContent : 'center' ,
49
49
alignItems : 'center' ,
50
- zIndex : 10
50
+ zIndex : 10 ,
51
+ backgroundColor : App . theme_background_color ( ) ,
52
+ opacity : 0.7
51
53
} }
52
54
>
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 >
55
63
</ View >
56
64
: null
57
65
}
You can’t perform that action at this time.
0 commit comments