fix qr code text alignment on Android

This commit is contained in:
Samuel Newman
2025-11-19 16:56:02 +02:00
parent 7b99d8c7c3
commit 3777341f7e
+6 -10
View File
@@ -76,16 +76,12 @@ export function QrCode({
<QrCodeInner link={link} />
</View>
<Text
style={[
a.flex,
a.flex_row,
a.align_center,
a.font_semi_bold,
{color: 'white', fontSize: 18, gap: 6},
]}>
<View style={[a.flex, a.flex_row, a.align_center, {gap: 6}]}>
{/* eslint-disable-next-line bsky-internal/avoid-unwrapped-text */}
<Trans>
on
<Text style={[{color: 'white', fontSize: 18}, a.font_semi_bold]}>
on
</Text>
<View style={[a.flex_row, a.align_center, {gap: 6}]}>
<Logo width={25} fill="white" />
<View style={[{marginTop: 3.5}]}>
@@ -93,7 +89,7 @@ export function QrCode({
</View>
</View>
</Trans>
</Text>
</View>
</View>
</LinearGradientBackground>
</LazyViewShot>