borderRadius
スタイル属性はコンポーネントの境界を正しく変更しません。react-native:borderRadiusがコンポーネントを正しくフレーム化しない
赤い背景に緑色の円が表示されると予想されます。代わりに、私はこれを見る。
class Healthie extends React.Component {
render() {
return (
<View style={styles.container}>
<Text style={styles.button} />
</View>
);
}
};
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'red',
},
button: {
backgroundColor: 'green',
borderRadius: 50,
width: 100,
height: 100,
textAlign: 'center'
}
});
反応し、ネイティブバージョン:0.17.0を。
私の作品!ありがとう! '{{backgroundColor: 'transparent'}}'がなくても。 –