Commit 7fea3f07 by tungnq

TODO: Hoàn thiện xong giao diện phần màn hình chi tiết văn bản

parent 67627291
......@@ -63,7 +63,7 @@ const styles = StyleSheet.create({
padding:10,
alignSelf:'flex-start',
backgroundColor:R.colors.orange,
marginHorizontal:5
marginHorizontal:5,
},
containerBtn:{
flexDirection:'row',
......
......@@ -156,7 +156,7 @@ const DetailIncomingDocumentView = props => {
{icomingDocument.received_departments.map((item, index) => {
return (
<View style={styles.card}>
<Text style={{color: R.colors.white}} key={index}>
<Text style={{color: R.colors.white, fontSize:R.fontsize.fontSizeContent}} key={index}>
{item.name}
</Text>
</View>
......@@ -174,7 +174,7 @@ const DetailIncomingDocumentView = props => {
{icomingDocument.received_group.map((item, index) => {
return (
<View style={[styles.card, {backgroundColor: R.colors.blue}]}>
<Text style={{color: R.colors.white}} key={index}>
<Text style={{color: R.colors.white, fontSize:R.fontsize.fontSizeContent}} key={index}>
{item.name}
</Text>
</View>
......@@ -193,7 +193,7 @@ const DetailIncomingDocumentView = props => {
{icomingDocument.receiver.map((item, index) => {
return (
<View style={[styles.card, {backgroundColor: R.colors.blue}]}>
<Text style={{color: R.colors.white}} key={index}>
<Text style={{color: R.colors.white, fontSize:R.fontsize.fontSizeContent}} key={index}>
{item.name}
</Text>
</View>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment