Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
ForPhysio_try
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Juan Emilio Ordonez Márquez
ForPhysio_try
Commits
0343cb69
Commit
0343cb69
authored
3 years ago
by
ric
Browse files
Options
Downloads
Plain Diff
Merge branch 'stable' of
https://github.com/Ricter22/ForPhysio_try
into stable
parents
46508ebd
e70be2c9
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
mobile/Screens/appScreen.js
+76
-0
76 additions, 0 deletions
mobile/Screens/appScreen.js
mobile/Screens/homeScreen.js
+0
-63
0 additions, 63 deletions
mobile/Screens/homeScreen.js
with
76 additions
and
63 deletions
mobile/Screens/appScreen.js
0 → 100644
+
76
−
0
View file @
0343cb69
import
React
,
{
Component
}
from
"
react
"
;
import
{
StyleSheet
,
Text
,
View
,
Button
,
TextInput
,
ImageBackground
,
TouchableOpacity
}
from
"
react-native
"
;
class
HomeScreen
extends
Component
{
signupPressed
=
()
=>
{
Alert
.
alert
(
"
Completed Sign Up
"
)
}
loginPressed
=
()
=>
{
Alert
.
alert
(
"
Completed Login!
"
)
}
render
()
{
return
(
<
ImageBackground
source
=
{
require
(
"
../images/background.jpg
"
)}
style
=
{
styles
.
background
}
>
<
Text
style
=
{
styles
.
text
}
>
4
PHYSIO
<
/Text
>
<
TouchableOpacity
onPress
=
{
this
.
signupPressed
}
>
<
Text
style
=
{
styles
.
signup
}
>
Sign
Up
<
/Text
>
<
/TouchableOpacity
>
<
TouchableOpacity
onPress
=
{
this
.
loginPressed
}
>
<
Text
style
=
{
styles
.
login
}
>
Log
In
<
/Text
>
<
/TouchableOpacity
>
<
/ImageBackground
>
);
}
}
const
styles
=
StyleSheet
.
create
({
container
:
{
flex
:
1
,
},
background
:{
width
:
"
100%
"
,
height
:
"
100%
"
},
text
:
{
color
:
"
white
"
,
fontSize
:
42
,
lineHeight
:
84
,
fontWeight
:
"
bold
"
,
textAlign
:
"
right
"
,
backgroundColor
:
"
#000000c0
"
},
signup
:
{
backgroundColor
:
'
white
'
,
color
:
'
#3A59FF
'
,
width
:
"
75%
"
,
borderRadius
:
25
,
textAlign
:
'
center
'
,
fontWeight
:
'
bold
'
,
marginLeft
:
'
11%
'
,
padding
:
"
2%
"
,
fontSize
:
27
,
marginTop
:
'
80%
'
},
login
:
{
backgroundColor
:
'
#3A59FF
'
,
color
:
'
white
'
,
width
:
"
75%
"
,
borderRadius
:
25
,
textAlign
:
'
center
'
,
fontWeight
:
'
bold
'
,
marginLeft
:
'
11%
'
,
padding
:
"
2%
"
,
fontSize
:
27
,
marginTop
:
'
10%
'
}
});
export
default
HomeScreen
;
This diff is collapsed.
Click to expand it.
mobile/Screens/homeScreen.js
+
0
−
63
View file @
0343cb69
import
React
,
{
Component
}
from
"
react
"
;
import
{
StyleSheet
,
Text
,
View
,
Button
,
TextInput
,
ImageBackground
,
TouchableOpacity
}
from
"
react-native
"
;
class
HomeScreen
extends
Component
{
render
()
{
return
(
<
ImageBackground
source
=
{
require
(
"
../images/background.jpg
"
)}
style
=
{
styles
.
background
}
>
<
Text
style
=
{
styles
.
text
}
>
4
PHYSIO
<
/Text
>
<
TouchableOpacity
>
<
Text
style
=
{
styles
.
signup
}
><
/Text
>
<
/TouchableOpacity
>
<
TouchableOpacity
>
<
Text
style
=
{
styles
.
login
}
><
/Text
>
<
/TouchableOpacity
>
<
/ImageBackground
>
);
}
}
const
styles
=
StyleSheet
.
create
({
container
:
{
flex
:
1
,
},
background
:{
width
:
"
100%
"
,
height
:
"
100%
"
},
text
:
{
color
:
"
white
"
,
fontSize
:
42
,
lineHeight
:
84
,
fontWeight
:
"
bold
"
,
textAlign
:
"
right
"
,
backgroundColor
:
"
#000000c0
"
},
signup
:
{
backgroundColor
:
'
white
'
,
color
:
'
#3A59FF
'
,
width
:
"
75%
"
,
borderRadius
:
25
,
textAlign
:
'
center
'
,
fontWeight
:
'
bold
'
,
marginLeft
:
'
11%
'
,
padding
:
"
2%
"
,
fontSize
:
27
,
marginTop
:
'
80%
'
},
login
:
{
backgroundColor
:
'
#3A59FF
'
,
color
:
'
white
'
,
width
:
"
75%
"
,
borderRadius
:
25
,
textAlign
:
'
center
'
,
fontWeight
:
'
bold
'
,
marginLeft
:
'
11%
'
,
padding
:
"
2%
"
,
fontSize
:
27
,
marginTop
:
'
10%
'
}
});
export
default
HomeScreen
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment