Increase chat bubble max width to 85% (was 80%) (#10930)

Co-authored-by: Samuel Newman <mozzius@protonmail.com>
This commit is contained in:
DS Boyce
2026-06-17 02:29:05 -07:00
committed by GitHub
parent c3a110a939
commit 6bf1572ffc
4 changed files with 19 additions and 4 deletions
+2 -1
View File
@@ -15,6 +15,7 @@ import Animated, {
import {useHaptics} from '#/lib/haptics'
import {atoms as a, tokens, useTheme} from '#/alf'
import {ArrowCornerDownRight_Stroke2_Corner3_Rounded as ReplyIcon} from '#/components/icons/ArrowCornerDownRight'
import {MESSAGE_BUBBLE_MAX_WIDTH} from './util'
// Distance the bubble must travel before releasing fires a reply.
const ACTIVATION_THRESHOLD = 56
@@ -184,7 +185,7 @@ export function SwipeToReply({
leaving the gutter free for the back/scroll gestures. */}
<Animated.View
style={[
{maxWidth: '80%'},
{maxWidth: MESSAGE_BUBBLE_MAX_WIDTH},
isFromSelf ? a.self_end : a.self_start,
contentStyle,
]}>