fix android admonition flex collapse issue (#9120)

This commit is contained in:
Samuel Newman
2025-10-10 19:43:23 +03:00
committed by GitHub
parent c928d6b14a
commit 2b34721876
+1 -1
View File
@@ -87,7 +87,7 @@ export function Row({
style?: StyleProp<ViewStyle>
}) {
return (
<View style={[a.flex_1, a.flex_row, a.align_start, a.gap_sm, style]}>
<View style={[a.w_full, a.flex_row, a.align_start, a.gap_sm, style]}>
{children}
</View>
)