Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
InvestCustomer
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Giang Tran
InvestCustomer
Commits
09a6d45d
Commit
09a6d45d
authored
Apr 02, 2021
by
Giang Tran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
edit moment
parent
dbb16f2e
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
54 additions
and
26 deletions
+54
-26
Wallet.js
src/Screens/Action/Wallet/Wallet.js
+43
-15
Item.js
src/Screens/MethodPay/Item.js
+5
-5
MethodPayView.js
src/Screens/MethodPay/MethodPayView.js
+1
-1
Tab1.js
src/Screens/NewFeed/Tab1/Tab1.js
+1
-0
item.js
src/Screens/NewFeed/Tab1/item.js
+3
-4
Item.js
src/Screens/Notification/Item.js
+1
-1
No files found.
src/Screens/Action/Wallet/Wallet.js
View file @
09a6d45d
...
...
@@ -37,37 +37,65 @@ const Wallet = (props) => {
/
>
<
/Tab.Navigator
>
<
/View
>
<
View
style
=
{
styles
.
footer
}
>
<
TouchableOpacity
onPress
=
{()
=>
navigate
.
navigate
(
WALLETDEPOSIT
)}
style
=
{
styles
.
btn
}
>
<
Text
style
=
{
styles
.
txtTitle
}
>
N
ạ
p
ti
ề
n
<
/Text
>
<
/TouchableOpacity
>
<
TouchableOpacity
onPress
=
{()
=>
navigate
.
navigate
(
WALLETWITHDRAW
)}
style
=
{
styles
.
btn
}
>
<
Text
style
=
{
styles
.
txtTitle
}
>
R
ú
t
ti
ề
n
<
/Text
>
<
/TouchableOpacity
>
<
/View
>
<
TouchableOpacity
onPress
=
{()
=>
navigate
.
navigate
(
WALLETDEPOSIT
)}
style
=
{
styles
.
btnLeft
}
>
<
Text
style
=
{
styles
.
txtTitle
}
>
N
ạ
p
ti
ề
n
<
/Text
>
<
/TouchableOpacity
>
<
TouchableOpacity
onPress
=
{()
=>
navigate
.
navigate
(
WALLETWITHDRAW
)}
style
=
{
styles
.
btnRight
}
>
<
Text
style
=
{
styles
.
txtTitle
}
>
R
ú
t
ti
ề
n
<
/Text
>
<
/TouchableOpacity
>
<
/View
>
);
};
const
styles
=
StyleSheet
.
create
({
footer
:
{
height
:
6
0
,
height
:
5
0
,
width
:
'100%'
,
flexDirection
:
'row'
,
justifyContent
:
'space-around'
,
},
btn
:
{
btnRight
:
{
width
:
140
,
height
:
40
,
backgroundColor
:
R
.
colors
.
main
,
borderRadius
:
10
,
justifyContent
:
'center'
,
alignItems
:
'center'
,
position
:
'absolute'
,
bottom
:
10
,
right
:
30
,
shadowColor
:
'#AFA9A9'
,
shadowOffset
:
{
width
:
0
,
height
:
1
,
},
shadowOpacity
:
0.25
,
shadowRadius
:
1.84
,
elevation
:
1
,
},
btnLeft
:
{
width
:
140
,
height
:
40
,
backgroundColor
:
R
.
colors
.
main
,
borderRadius
:
10
,
justifyContent
:
'center'
,
alignItems
:
'center'
,
position
:
'absolute'
,
bottom
:
10
,
left
:
30
,
shadowColor
:
'#AFA9A9'
,
shadowOffset
:
{
width
:
0
,
height
:
1
,
},
shadowOpacity
:
0.25
,
shadowRadius
:
1.84
,
elevation
:
1
,
},
txtTitle
:
{
fontSize
:
getFontXD
(
42
),
...
...
src/Screens/MethodPay/Item.js
View file @
09a6d45d
...
...
@@ -16,9 +16,9 @@ const Item = (props) => {
<
Text
style
=
{
styles
.
txtBig
}
>
{
item
.
title
}
<
/Text
>
<
Block
space
=
{
'between'
}
margin
=
{[
10
,
0
,
0
,
0
]}
row
flex
=
{
1
}
>
<
Block
>
<
Text
style
=
{
styles
.
txtLeft
}
>
Ti
en
nap
toi
thie
u
<
/Text
>
<
Text
style
=
{
styles
.
txtLeft
}
>
Hoa
h
o
ng
<
/Text
>
<
Text
style
=
{
styles
.
txtLeft
}
>
Th
o
i
gian
<
/Text
>
<
Text
style
=
{
styles
.
txtLeft
}
>
Ti
ề
n
n
ạ
p
t
ố
i
thi
ể
u
<
/Text
>
<
Text
style
=
{
styles
.
txtLeft
}
>
Hoa
h
ồ
ng
<
/Text
>
<
Text
style
=
{
styles
.
txtLeft
}
>
Th
ờ
i
gian
<
/Text
>
<
/Block
>
<
Block
>
<
Text
style
=
{
styles
.
txtRight
}
>
{
item
.
minPay
}
USD
<
/Text
>
...
...
@@ -82,8 +82,8 @@ const styles = StyleSheet.create({
color
:
'black'
,
},
imgIcon
:
{
width
:
WIDTHXD
(
220
)
,
height
:
HEIGHTXD
(
220
)
,
width
:
90
,
height
:
90
,
resizeMode
:
'contain'
,
},
txtLeft
:
{
...
...
src/Screens/MethodPay/MethodPayView.js
View file @
09a6d45d
...
...
@@ -85,7 +85,7 @@ const styles = StyleSheet.create({
containerBtn
:
{
backgroundColor
:
R
.
colors
.
main
,
position
:
'absolute'
,
bottom
:
5
0
,
bottom
:
3
0
,
right
:
20
,
width
:
WIDTHXD
(
144
),
height
:
WIDTHXD
(
144
),
...
...
src/Screens/NewFeed/Tab1/Tab1.js
View file @
09a6d45d
...
...
@@ -147,6 +147,7 @@ const styles = StyleSheet.create({
paddingHorizontal
:
10
,
paddingVertical
:
6
,
marginLeft
:
20
,
borderRadius
:
10
,
},
txt
:
{
fontSize
:
getFontXD
(
42
),
...
...
src/Screens/NewFeed/Tab1/item.js
View file @
09a6d45d
...
...
@@ -30,7 +30,7 @@ const Item = (props) => {
const
styles
=
StyleSheet
.
create
({
container
:
{
margin
Vertical
:
15
,
margin
Top
:
15
,
},
row
:
{
flexDirection
:
'row'
,
...
...
@@ -49,9 +49,8 @@ const styles = StyleSheet.create({
color
:
'#A2A2A2'
,
},
img
:
{
width
:
'100%'
,
height
:
260
,
borderRadius
:
5
,
height
:
180
,
borderRadius
:
10
,
marginTop
:
5
,
},
row
:
{
...
...
src/Screens/Notification/Item.js
View file @
09a6d45d
...
...
@@ -40,7 +40,7 @@ export default Item;
const
styles
=
StyleSheet
.
create
({
container
:
{
marginTop
:
10
,
height
:
HEIGHTXD
(
250
)
,
paddingVertical
:
10
,
shadowColor
:
'#000'
,
shadowOffset
:
{
width
:
0
,
...
...
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