We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4763b8a commit f8ff2feCopy full SHA for f8ff2fe
src/components/Message/MessageSimple/MessageReplies.tsx
@@ -1,6 +1,7 @@
1
import React from 'react';
2
import {
3
ColorValue,
4
+ Platform,
5
StyleSheet,
6
Text,
7
TouchableOpacity,
@@ -44,6 +45,11 @@ const styles = StyleSheet.create({
44
45
leftMessageRepliesCurve: {
46
borderBottomLeftRadius: 16,
47
borderRightColor: 'transparent',
48
+ ...Platform.select({
49
+ android: {
50
+ borderRightWidth: 0,
51
+ },
52
+ }),
53
},
54
messageRepliesCurve: {
55
borderTopColor: 'transparent',
@@ -61,6 +67,11 @@ const styles = StyleSheet.create({
61
67
rightMessageRepliesCurve: {
62
68
borderBottomRightRadius: 16,
63
69
borderLeftColor: 'transparent',
70
71
72
+ borderLeftWidth: 0,
73
74
64
75
65
76
});
66
77
0 commit comments