Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
AppUms_Lecturer
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
0
Merge Requests
0
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
tungnq
AppUms_Lecturer
Commits
5345fd17
Commit
5345fd17
authored
Aug 20, 2025
by
tungnq
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
TODO: Đã hoàn thiện giao diện cơ bản của bảng lịch học đang bổ sung check box
parent
fe74061b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
73 additions
and
4 deletions
+73
-4
index.js
src/screens/compensate/register/index.js
+0
-0
style.js
src/screens/compensate/register/style.js
+73
-4
view.js
src/screens/compensate/register/view.js
+0
-0
No files found.
src/screens/compensate/register/index.js
View file @
5345fd17
This diff is collapsed.
Click to expand it.
src/screens/compensate/register/style.js
View file @
5345fd17
import
{
StyleSheet
,
Text
,
View
}
from
'react-native'
import
{
StyleSheet
,
Text
,
View
,
Dimensions
}
from
'react-native'
import
R
from
'../../../assets/R'
;
//B1: Xác định chiều rộng cột đầu tiên
const
width_first
=
100
;
//B2: Xác định chiều rộng của 15 cột tiếp theo
const
width_second
=
110
;
//B3: Xác định số tiết diễn ra trong 1 ngày -> để có kích thước bảng
const
period_count
=
15
;
//B4: Xác định chiều rộng của bảng
const
total_width_table
=
width_first
+
(
width_second
*
period_count
);
const
styles
=
StyleSheet
.
create
({
container
:{
flex
:
1
,
...
...
@@ -29,6 +37,13 @@ container:{
},
//Header bảng lịch
tableContainer
:{
marginTop
:
15
,
borderWidth
:
1
,
borderColor
:
R
.
colors
.
gray
,
width
:
total_width_table
,
},
headerRow
:
{
flexDirection
:
'row'
,
backgroundColor
:
R
.
colors
.
white
,
...
...
@@ -43,7 +58,8 @@ container:{
color
:
R
.
colors
.
black
,
},
dateColumn
:
{
minHeight
:
40
,
height
:
40
,
width
:
width_first
,
paddingHorizontal
:
10
,
justifyContent
:
'center'
,
alignItems
:
'center'
,
...
...
@@ -52,13 +68,65 @@ container:{
borderRightColor
:
R
.
colors
.
gray
,
},
periodColumn
:
{
minHeight
:
40
,
paddingHorizontal
:
10
,
height
:
40
,
width
:
width_second
,
paddingHorizontal
:
5
,
justifyContent
:
'center'
,
alignItems
:
'center'
,
backgroundColor
:
R
.
colors
.
blue2
,
borderRightWidth
:
1
,
borderRightColor
:
R
.
colors
.
gray
,
},
dateBody
:{
width
:
width_first
,
minHeight
:
40
,
justifyContent
:
'center'
,
alignItems
:
'center'
,
backgroundColor
:
R
.
colors
.
white
,
borderRightWidth
:
1
,
borderRightColor
:
R
.
colors
.
gray
,
},
periodBody
:{
width
:
width_second
,
padding
:
5
,
justifyContent
:
'center'
,
alignItems
:
'center'
,
backgroundColor
:
R
.
colors
.
white
,
borderRightWidth
:
1
,
borderRightColor
:
R
.
colors
.
gray
,
},
dataRow
:
{
flexDirection
:
'row'
,
borderBottomWidth
:
1
,
borderBottomColor
:
R
.
colors
.
gray
,
minHeight
:
50
,
},
periodCell
:
{
padding
:
2
,
alignItems
:
'center'
,
justifyContent
:
'center'
,
minHeight
:
50
,
width
:
'100%'
,
},
dateText
:{
fontSize
:
R
.
sizes
.
sm
,
fontWeight
:
'500'
,
fontFamily
:
R
.
fonts
.
fontMedium
,
color
:
R
.
colors
.
black
,
},
percentText
:{
fontSize
:
R
.
sizes
.
sm
,
fontWeight
:
'500'
,
fontFamily
:
R
.
fonts
.
fontMedium
,
color
:
R
.
colors
.
black
,
},
codeText
:{
fontSize
:
R
.
sizes
.
sm
,
fontWeight
:
'500'
,
fontFamily
:
R
.
fonts
.
fontMedium
,
color
:
R
.
colors
.
black
,
},
})
export
default
styles
\ No newline at end of file
src/screens/compensate/register/view.js
View file @
5345fd17
This diff is collapsed.
Click to expand it.
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