Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sp21-cs242-assignment3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
zshan2
sp21-cs242-assignment3
Merge requests
!1
<Assignment-3.0>
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
<Assignment-3.0>
assignment-3.0
into
master
Overview
0
Commits
5
Pipelines
0
Changes
10
Merged
zshan2
requested to merge
assignment-3.0
into
master
4 years ago
Overview
0
Commits
5
Pipelines
0
Changes
10
Expand
0
0
Merge request reports
Viewing commit
0406e34c
Prev
Next
Show latest version
10 files
+
510
−
115
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
0406e34c
assignment3.0 ver3: done
· 0406e34c
zshan2
authored
4 years ago
src/Components/Loading.js
0 → 100644
+
29
−
0
Options
import
*
as
React
from
'
react
'
;
import
{
Pressable
,
View
,
Text
,
Image
,
StyleSheet
,
ImageBackground
}
from
'
react-native
'
;
const
styles
=
StyleSheet
.
create
({
viewStyleVertical
:
{
alignItems
:
'
center
'
,
justifyContent
:
'
center
'
,
margin
:
'
10%
'
},
viewStyleHorizon
:
{
flex
:
1
,
flexDirection
:
'
row
'
,
justifyContent
:
'
space-between
'
},
pressableStyle
:
{
flex
:
1
,
flexDirection
:
'
row
'
,
justifyContent
:
'
space-between
'
,
backgroundColor
:
'
lavender
'
,
paddingHorizontal
:
20
,
paddingVertical
:
10
,
borderColor
:
'
thistle
'
,
borderWidth
:
2
,
borderRadius
:
5
,
marginHorizontal
:
10
,
marginTop
:
10
},
image
:
{
flex
:
1
,
resizeMode
:
"
cover
"
,
justifyContent
:
"
center
"
},
container
:
{
flex
:
1
},
textBox
:
{
flex
:
1
,
marginTop
:
20
,
backgroundColor
:
'
white
'
,
borderColor
:
'
black
'
,
borderWidth
:
2
,
borderRadius
:
5
,
marginHorizontal
:
10
,
paddingVertical
:
10
,
paddingHorizontal
:
50
,
alignItems
:
'
flex-start
'
}
});
const
Loading
=
()
=>
{
const
pic
=
require
(
'
C:/Coding/cs242-assignment3/GitView/assets/loading.png
'
)
return
(
<
View
style
=
{
styles
.
container
}
>
<
ImageBackground
source
=
{
require
(
'
C:/Coding/cs242-assignment3/GitView/assets/ice.jpg
'
)}
style
=
{
styles
.
image
}
>
<
View
style
=
{
styles
.
viewStyleVertical
}
>
<
Text
style
=
{{
fontSize
:
30
}}
>
Loading
......
<
/Text
>
<
Image
source
=
{
pic
}
style
=
{{
width
:
200
,
height
:
200
}}
/
>
<
/View
>
<
/ImageBackground
>
<
/View
>
)
}
export
default
Loading
;
\ No newline at end of file
Loading