upd: dokumen divisi

Deskripsi:
- ui menu bottom dan header saat file dokumen sedang keselect
- modal informasi
- ui accordion

- nb : scroll view di modal masih blm bisa

No Issues
This commit is contained in:
amel
2025-03-19 15:28:09 +08:00
parent 3f75d25905
commit f6ac399c06
6 changed files with 296 additions and 15 deletions

View File

@@ -119,6 +119,15 @@ const Styles = StyleSheet.create({
ml10: {
marginLeft: 10
},
ml15: {
marginLeft: 15
},
ml20: {
marginLeft: 20
},
ml25: {
marginLeft: 25
},
ph05: {
paddingHorizontal: 5,
},
@@ -143,6 +152,12 @@ const Styles = StyleSheet.create({
round10: {
borderRadius: 10
},
w100: {
width: '100%'
},
w50: {
width: '50%'
},
round30: {
borderRadius: 30
},
@@ -162,6 +177,9 @@ const Styles = StyleSheet.create({
flexDirection: 'row',
alignItems: 'center'
},
rowOnly: {
flexDirection: 'row'
},
btnIconHeader: {
backgroundColor: '#384288',
padding: 7,
@@ -193,6 +211,10 @@ const Styles = StyleSheet.create({
width: '33%',
alignItems: 'center'
},
btnMenuRowMany: {
alignItems: 'center',
marginHorizontal: 10
},
inputRoundForm: {
borderRadius: 10,
borderColor: '#d6d8f6',
@@ -430,9 +452,25 @@ const Styles = StyleSheet.create({
backgroundColor: '#238be6',
borderRadius: 5
},
selectRangeDate:{
selectRangeDate: {
backgroundColor: '#228be61f',
}
},
bottomMenuSelectDocument: {
paddingVertical: 10,
position: 'absolute',
width: '100%',
bottom: 0
},
animatedView: {
width: '100%',
overflow: 'hidden',
},
wrapperAccordion: {
width: '100%',
position: 'absolute',
display: 'flex',
alignItems: 'center',
},
})
export default Styles;