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
ea58ff3b
Commit
ea58ff3b
authored
3 years ago
by
ric
Browse files
Options
Downloads
Plain Diff
updating home
parents
8bbf9460
c637a04a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
mobile/.vscode/launch.json
+21
-0
21 additions, 0 deletions
mobile/.vscode/launch.json
mobile/App.js
+2
-0
2 additions, 0 deletions
mobile/App.js
mobile/Screens/secondScreen.js
+31
-0
31 additions, 0 deletions
mobile/Screens/secondScreen.js
with
54 additions
and
0 deletions
mobile/.vscode/launch.json
0 → 100644
+
21
−
0
View file @
ea58ff3b
{
//
Use
IntelliSense
para
saber
los
atributos
posibles.
//
Mantenga
el
puntero
para
ver
las
descripciones
de
los
existentes
atributos.
//
Para
más
información
,
visite:
https://go.microsoft.com/fwlink/?linkid=
830387
"version"
:
"0.2.0"
,
"configurations"
:
[
{
"name"
:
"Attach to packager"
,
"request"
:
"attach"
,
"type"
:
"reactnative"
,
"cwd"
:
"${workspaceFolder}"
},
{
"name"
:
"Debug Android"
,
"request"
:
"launch"
,
"type"
:
"reactnative"
,
"cwd"
:
"${workspaceFolder}"
,
"platform"
:
"android"
}
]
}
This diff is collapsed.
Click to expand it.
mobile/App.js
+
2
−
0
View file @
ea58ff3b
...
@@ -13,6 +13,8 @@ class App extends React.Component {
...
@@ -13,6 +13,8 @@ class App extends React.Component {
//with navigation, then in the classes we'll use the navigate
//with navigation, then in the classes we'll use the navigate
//method to move from one page to another
//method to move from one page to another
render
()
{
render
()
{
let
x
=
1
;
console
.
log
(
"
App executed
"
);
return
(
return
(
<
NavigationContainer
>
<
NavigationContainer
>
<
Stack
.
Navigator
>
<
Stack
.
Navigator
>
...
...
This diff is collapsed.
Click to expand it.
mobile/Screens/secondScreen.js
0 → 100644
+
31
−
0
View file @
ea58ff3b
import
React
from
'
react
'
;
import
{
StyleSheet
,
Text
,
View
,
Button
}
from
'
react-native
'
;
class
SecondScreen
extends
React
.
Component
{
render
()
{
return
(
<
View
style
=
{
styles
.
container
}
>
<
Text
>
Second
page
!<
/Text
>
<
Button
title
=
"
Go to Home
"
onPress
=
{()
=>
this
.
props
.
navigation
.
navigate
(
'
Home
'
)
}
/
>
<
/View
>
);
}
}
// ...
const
styles
=
StyleSheet
.
create
({
container
:
{
flex
:
1
,
backgroundColor
:
'
#fff
'
,
alignItems
:
'
center
'
,
justifyContent
:
'
center
'
,
},
});
export
default
SecondScreen
;
\ No newline at end of file
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