Toggle navigation
Toggle navigation
This project
Loading...
Sign in
신승민
/
pocketMovie
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
신승민
2019-12-14 00:00:00 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c69bdbe342b7cc202b50c97e44ec73f6b50e8cf7
c69bdbe3
1 parent
5520e91c
Delete unnecessary files
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
25 deletions
Loading.js
Loading.js
deleted
100644 → 0
View file @
5520e91
import
React
from
"react"
;
import
{
StyleSheet
,
Text
,
View
,
StatusBar
}
from
"react-native"
;
export
default
function
Loading
()
{
return
(
<
View
style
=
{
styles
.
container
}
>
<
StatusBar
barStyle
=
"dark-content"
/>
<
Text
style
=
{
styles
.
text
}
>
Getting
the
current
weather
<
/Text
>
<
/View
>
);
}
const
styles
=
StyleSheet
.
create
({
container
:
{
flex
:
1
,
justifyContent
:
"flex-end"
,
paddingHorizontal
:
30
,
paddingVertical
:
100
,
backgroundColor
:
"#FDF6AA"
},
text
:
{
color
:
"#2c2c2c"
,
fontSize
:
30
}
});
Please
register
or
login
to post a comment