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
+5 -9
View File
@@ -76,16 +76,12 @@ export function QrCode({
<QrCodeInner link={link} /> <QrCodeInner link={link} />
</View> </View>
<Text <View style={[a.flex, a.flex_row, a.align_center, {gap: 6}]}>
style={[ {/* eslint-disable-next-line bsky-internal/avoid-unwrapped-text */}
a.flex,
a.flex_row,
a.align_center,
a.font_semi_bold,
{color: 'white', fontSize: 18, gap: 6},
]}>
<Trans> <Trans>
<Text style={[{color: 'white', fontSize: 18}, a.font_semi_bold]}>
on on
</Text>
<View style={[a.flex_row, a.align_center, {gap: 6}]}> <View style={[a.flex_row, a.align_center, {gap: 6}]}>
<Logo width={25} fill="white" /> <Logo width={25} fill="white" />
<View style={[{marginTop: 3.5}]}> <View style={[{marginTop: 3.5}]}>
@@ -93,7 +89,7 @@ export function QrCode({
</View> </View>
</View> </View>
</Trans> </Trans>
</Text> </View>
</View> </View>
</LinearGradientBackground> </LinearGradientBackground>
</LazyViewShot> </LazyViewShot>