Feature/notification system #26
1 changed files with 6 additions and 6 deletions
12
app/call.jsx
12
app/call.jsx
|
|
@ -197,7 +197,7 @@ export default function Call() {
|
||||||
backgroundColor: '#fff',
|
backgroundColor: '#fff',
|
||||||
shadowOffset: { width: 0, height: 0 },
|
shadowOffset: { width: 0, height: 0 },
|
||||||
shadowColor: callColorSelector(
|
shadowColor: callColorSelector(
|
||||||
incNatureCode,
|
incNatureCodeDesc,
|
||||||
incNature,
|
incNature,
|
||||||
status
|
status
|
||||||
),
|
),
|
||||||
|
|
@ -207,10 +207,10 @@ export default function Call() {
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<View style={{ flexDirection: 'column' }}>
|
<View style={{ flexDirection: 'column' }}>
|
||||||
<View style={{ flexDirection: 'row', alignItems: 'center', maxWidth: '90%' }}>
|
<View style={{ flexDirection: 'row', alignItems: 'center', width: '100%' }}>
|
||||||
<SelectedIcon
|
<SelectedIcon
|
||||||
color={callColorSelector(
|
color={callColorSelector(
|
||||||
incNatureCode,
|
incNatureCodeDesc,
|
||||||
incNature,
|
incNature,
|
||||||
status
|
status
|
||||||
)}
|
)}
|
||||||
|
|
@ -218,7 +218,7 @@ export default function Call() {
|
||||||
width={56}
|
width={56}
|
||||||
height={56}
|
height={56}
|
||||||
/>
|
/>
|
||||||
<View style={{ flexDirection: 'column', maxWidth: '90%' }}>
|
<View style={{ flex: 1, flexDirection: 'column' }}>
|
||||||
<Text
|
<Text
|
||||||
style={{
|
style={{
|
||||||
color: 'black',
|
color: 'black',
|
||||||
|
|
@ -228,13 +228,13 @@ export default function Call() {
|
||||||
>
|
>
|
||||||
{`${incNature}`}
|
{`${incNature}`}
|
||||||
</Text>
|
</Text>
|
||||||
<View style={{ flexDirection: 'row', justifyContent: 'space-between', maxWidth: '90%' }}>
|
<View style={{ flexDirection: 'row', justifyContent: 'space-between' }}>
|
||||||
<Text
|
<Text
|
||||||
style={{
|
style={{
|
||||||
color: 'black',
|
color: 'black',
|
||||||
fontSize: 12,
|
fontSize: 12,
|
||||||
textShadowColor: callColorSelector(
|
textShadowColor: callColorSelector(
|
||||||
incNatureCode,
|
incNatureCodeDesc,
|
||||||
incNature,
|
incNature,
|
||||||
status
|
status
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue