Feature/notification system #26

Open
mattdimegs wants to merge 34 commits from feature/notification-system into main
Showing only changes of commit e6c4389393 - Show all commits

View file

@ -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
), ),