Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
21_22-J 38
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
21_22-J 38
21_22-J 38
Commits
efe38537
Commit
efe38537
authored
Jan 07, 2022
by
W.D.R.P. Sandeepa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
load all color activities
parent
628289fc
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
5 deletions
+44
-5
frontend/src/component/colorActivity.js
frontend/src/component/colorActivity.js
+39
-5
frontend/src/screen/Color.js
frontend/src/screen/Color.js
+5
-0
No files found.
frontend/src/component/colorActivity.js
View file @
efe38537
...
...
@@ -2,12 +2,34 @@ import { useNavigation } from "@react-navigation/native";
import
React
from
"
react
"
;
import
{
Text
,
TouchableOpacity
,
StyleSheet
,
View
,
Image
}
from
'
react-native
'
export
default
function
ColorActivity
(){
export
default
function
ColorActivity
(
props
){
const
{
title
,
image
,
id
,
color
,
des
}
=
props
;
const
navigation
=
useNavigation
();
return
(
<
TouchableOpacity
onPress
=
{()
=>
{
navigation
.
navigate
(
"
Blue
"
)}}
style
=
{
styles
.
card
}
>
<
TouchableOpacity
onPress
=
{()
=>
{
navigation
.
navigate
(
"
Blue
"
)}}
style
=
{{
borderWidth
:
5
,
borderColor
:
color
,
marginVertical
:
20
,
backgroundColor
:
"
#fff
"
,
paddingVertical
:
8
,
paddingHorizontal
:
15
,
padding
:
15
,
width
:
380
,
marginHorizontal
:
20
,
borderRadius
:
30
,
shadowColor
:
"
#000
"
,
shadowOffset
:
{
width
:
2
,
height
:
2
},
shadowOpacity
:
0.3
,
shadowRadius
:
1.5
,
}}
>
<
View
style
=
{[{
flexDirection
:
"
row
"
}]}
>
<
View
style
=
{
styles
.
cardImage
}
>
...
...
@@ -16,9 +38,21 @@ export default function ColorActivity(){
<
/View
>
<
View
style
=
{{
flex
:
0.6
}}
>
<
Text
style
=
{
styles
.
cardTitle
}
>
First
Activity
<
/Text
>
<
Text
style
=
{
styles
.
cardLocation
}
>
Location
<
/Text
>
<
Text
style
=
{
styles
.
cardDescription
}
>
Description
<
/Text
>
{
/* <Text style={styles.cardDescription}>{id}</Text> */
}
<
Text
style
=
{
styles
.
cardTitle
}
>
{
title
}
<
/Text
>
<
Text
style
=
{
styles
.
cardLocation
}
>
{
des
}
<
/Text
>
<
View
style
=
{{
marginLeft
:
10
,
marginTop
:
5
,
width
:
40
,
height
:
40
,
borderRadius
:
100
,
backgroundColor
:
color
,
borderWidth
:
1
,
borderColor
:
"
black
"
,
}}
>
<
/View
>
<
/View
>
...
...
frontend/src/screen/Color.js
View file @
efe38537
...
...
@@ -55,6 +55,11 @@ export default function Color(){
<
/ImageBackground
>
<
/View
>
<
/View
>
{
datas
.
map
((
data
)
=>
{
return
(
<
ColorActivity
title
=
{
data
.
name
}
image
=
{
data
.
image
}
id
=
{
data
.
idcolorActivities
}
des
=
{
data
.
des
}
color
=
{
data
.
color
}
/>
)
})}
<
/ScrollView
>
<
/SafeAreaView
>
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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