Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
thalia
ThaliApp
Commits
381670f5
Verified
Commit
381670f5
authored
Sep 02, 2018
by
Sébastiaan Versteeg
Browse files
Change loadingscreen default background color
parent
23311e49
Changes
2
Hide whitespace changes
Inline
Side-by-side
__tests__/ui/components/loadingScreen/__snapshots__/LoadingScreen.spec.js.snap
View file @
381670f5
...
...
@@ -5,6 +5,7 @@ exports[`LoadingScreen component renders correctly 1`] = `
style={
Object {
"alignItems": "center",
"backgroundColor": "#FFFFFF",
"flex": 1,
"justifyContent": "center",
}
...
...
app/ui/components/loadingScreen/style/LoadingScreen.js
View file @
381670f5
import
{
StyleSheet
}
from
'
react-native
'
;
import
Colors
from
'
../../../style/Colors
'
;
import
StyleSheet
from
'
../../../style/StyleSheet
'
;
const
styles
=
StyleSheet
.
create
({
indicatorView
:
{
justifyContent
:
'
center
'
,
alignItems
:
'
center
'
,
flex
:
1
,
backgroundColor
:
Colors
.
white
,
},
});
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment