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
6cbf42f1
Commit
6cbf42f1
authored
Sep 02, 2018
by
Gijs Hendriksen
Browse files
Merge branch 'fix/loadingscreen-background' into 'master'
Change loadingscreen default background color See merge request
!195
parents
23dfeaee
381670f5
Changes
2
Hide whitespace changes
Inline
Side-by-side
__tests__/ui/components/loadingScreen/__snapshots__/LoadingScreen.spec.js.snap
View file @
6cbf42f1
...
...
@@ -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 @
6cbf42f1
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