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
844a3f24
Commit
844a3f24
authored
Apr 09, 2021
by
Giang Tran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update code
parent
3cbaf332
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
51 additions
and
3 deletions
+51
-3
RootView.js
src/RootView.js
+2
-0
DepositView.js
src/Screens/Action/Deposit/DepositView.js
+4
-1
DetailNew.js
src/Screens/NewFeed/DetailNew.js
+1
-0
NewFeed.js
src/Screens/NewFeed/NewFeed.js
+1
-2
Tab2.js
src/Screens/NewFeed/Tab2/Tab2.js
+1
-0
Test.js
src/Screens/NewFeed/Test.js
+36
-0
Tradding.js
src/Screens/NewFeed/Tradding/Tradding.js
+1
-0
StackNavigation.js
src/routers/StackNavigation.js
+4
-0
TabNavigation.js
src/routers/TabNavigation.js
+1
-0
No files found.
src/RootView.js
View file @
844a3f24
...
...
@@ -8,6 +8,8 @@ import {SkypeIndicator} from 'react-native-indicators';
import
{
HEIGHT
,
HEIGHTXD
}
from
'./Config/Functions'
;
import
R
from
'./assets/R'
;
import
FirebaseNotification
from
'./helper/FirebaseNotification'
;
import
{
enableScreens
}
from
'react-native-screens'
;
enableScreens
();
const
RootView
=
(
props
)
=>
{
onReceived
=
(
notification
)
=>
{};
...
...
src/Screens/Action/Deposit/DepositView.js
View file @
844a3f24
...
...
@@ -8,7 +8,10 @@ const DepositView = (props) => {
return
(
<
View
style
=
{{
flex
:
1
}}
>
<
HeaderBack
isWhite
=
{
true
}
title
=
{
'Nạp tiền'
}
/
>
<
WebView
source
=
{{
uri
:
props
.
urlCheckout
}}
/
>
<
WebView
androidHardwareAccelerationDisabled
=
{
true
}
source
=
{{
uri
:
props
.
urlCheckout
}}
/
>
<
/View
>
);
};
...
...
src/Screens/NewFeed/DetailNew.js
View file @
844a3f24
...
...
@@ -10,6 +10,7 @@ const DepositView = (props) => {
<
View
style
=
{{
flex
:
1
}}
>
<
HeaderBack
isWhite
=
{
true
}
title
=
{
'Chi tiết'
}
/
>
<
WebView
androidHardwareAccelerationDisabled
=
{
true
}
source
=
{{
uri
:
root
+
'api/v1/posts/detail/web-view?id='
+
props
.
route
.
params
.
id
,
...
...
src/Screens/NewFeed/NewFeed.js
View file @
844a3f24
...
...
@@ -16,7 +16,7 @@ const NewFeed = (props) => {
<
View
style
=
{{
flex
:
1
}}
>
<
HeaderDrawer
title
=
{
'Tin tức'
}
isWhite
=
{
true
}
/
>
<
View
style
=
{{
flex
:
1
,
backgroundColor
:
'white'
}}
>
{
/*
<Tab.Navigator
<
Tab
.
Navigator
initialRouteName
=
"GeneralInfor"
swipeEnabled
=
{
false
}
tabBarOptions
=
{{
...
...
@@ -52,7 +52,6 @@ const NewFeed = (props) => {
options
=
{{
tabBarLabel
:
'Biểu đồ'
}}
/
>
<
/Tab.Navigator
>
*/
}
<
/View
>
<
/View
>
);
...
...
src/Screens/NewFeed/Tab2/Tab2.js
View file @
844a3f24
...
...
@@ -12,6 +12,7 @@ const NewFeed = (props) => {
backgroundColor
:
'white'
,
}}
>
<
WebView
androidHardwareAccelerationDisabled
=
{
true
}
style
=
{{
height
:
'100%'
,
width
:
'100%'
}}
source
=
{{
uri
:
'http://api.dcvinvest.com/webview/tradingview/price'
,
...
...
src/Screens/NewFeed/Test.js
0 → 100644
View file @
844a3f24
import
*
as
React
from
'react'
;
import
{
View
,
useWindowDimensions
,
Button
}
from
'react-native'
;
import
{
TabView
,
SceneMap
}
from
'react-native-tab-view'
;
import
FirstRoute
from
'./Tab1/Tab1'
;
import
SecondRoute
from
'./Calendar/Calendar'
;
import
Notification
from
'../../Screens/Notification/Notification'
;
import
Tab2
from
'./Tab2/Tab2'
;
const
renderScene
=
SceneMap
({
first
:
FirstRoute
,
second
:
SecondRoute
,
three
:
Notification
,
four
:
Tab2
,
five
:
FirstRoute
,
});
export
default
function
TabViewExample
()
{
const
layout
=
useWindowDimensions
();
const
[
index
,
setIndex
]
=
React
.
useState
(
0
);
const
[
routes
]
=
React
.
useState
([
{
key
:
'first'
,
title
:
'First'
},
{
key
:
'second'
,
title
:
'Second'
},
{
key
:
'three'
,
title
:
'three'
},
{
key
:
'four'
,
title
:
'four'
},
{
key
:
'five'
,
title
:
'five'
},
]);
return
(
<
TabView
navigationState
=
{{
index
,
routes
}}
renderScene
=
{
renderScene
}
onIndexChange
=
{
setIndex
}
initialLayout
=
{{
width
:
layout
.
width
}}
/
>
);
}
src/Screens/NewFeed/Tradding/Tradding.js
View file @
844a3f24
...
...
@@ -6,6 +6,7 @@ const Trading = (props) => {
return
(
<
View
style
=
{{
flex
:
1
}}
>
<
WebView
androidHardwareAccelerationDisabled
=
{
true
}
style
=
{{
height
:
'100%'
,
width
:
'100%'
}}
source
=
{{
uri
:
...
...
src/routers/StackNavigation.js
View file @
844a3f24
...
...
@@ -44,6 +44,10 @@ import * as ScreenName from './ScreenNames';
const
Stack
=
createStackNavigator
();
import
{
enableScreens
}
from
'react-native-screens'
;
enableScreens
();
function
MyStack
(
props
)
{
return
(
<
Stack
.
Navigator
...
...
src/routers/TabNavigation.js
View file @
844a3f24
...
...
@@ -13,6 +13,7 @@ import Account from '../Screens/Account/Account';
import
Exchange
from
'../Screens/Exchange/Exchange'
;
import
NewFeed
from
'../Screens/NewFeed/NewFeed'
;
import
Notification
from
'../Screens/Notification/Notification'
;
import
Test
from
'../Screens/NewFeed/Test'
;
const
Tab
=
createBottomTabNavigator
();
const
PayScreenComponent
=
()
=>
{
...
...
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