Library Version
2.0.0-rc.2
React Native Version
0.85.3
React Version
19.2.3
Expo Version
56.0.5
Minimal Reproduction
I have the following code example two Box one below the other inside a VoltraAndroid.Column, I can't use margin between the two boxes.

import { StatusBar, StyleSheet, useColorScheme, View } from 'react-native';
import { SafeAreaProvider } from 'react-native-safe-area-context';
import {
VoltraWidgetPreview,
} from '@use-voltra/android-client';
import { VoltraAndroid } from '@use-voltra/android'
function App() {
const isDarkMode = useColorScheme() === 'dark';
return (
<SafeAreaProvider>
<StatusBar barStyle={isDarkMode ? 'light-content' : 'dark-content'} />
<View style={styles.container}>
<MyWidgetPreview />
</View>
</SafeAreaProvider>
);
}
function MyWidgetPreview() {
return (
<VoltraWidgetPreview
family="extraLarge"
style={{ backgroundColor: '#1557ff', borderRadius: 4 }}
>
<VoltraAndroid.Column style={{}}>
<VoltraAndroid.Box
style={{
backgroundColor: "#ffffff",
borderRadius: 4,
width: 100,
height: 100,
margin: 5
}}
contentAlignment='center'
>
<VoltraAndroid.Text style={{ color: '#000' }}>A</VoltraAndroid.Text>
</VoltraAndroid.Box>
<VoltraAndroid.Box
style={{
backgroundColor: "#000000",
borderRadius: 4,
width: 100,
height: 100
}}
contentAlignment='center'
>
<VoltraAndroid.Text style={{ color: '#fff' }}>B</VoltraAndroid.Text>
</VoltraAndroid.Box>
</VoltraAndroid.Column>
</VoltraWidgetPreview>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
});
export default App;
Additional Information (Optional)
No response
Library Version
2.0.0-rc.2
React Native Version
0.85.3
React Version
19.2.3
Expo Version
56.0.5
Minimal Reproduction
I have the following code example two
Boxone below the other inside aVoltraAndroid.Column, I can't use margin between the two boxes.Additional Information (Optional)
No response