Answers for "react native red Half Circle bubble"

0

react native red Half Circle bubble

var HalfCircle = React.createClass({
    render: function() {
        return (
            <View style={[styles.halfCircle, this.props.style]} />
        )
    }
})

halfCircle: {
    width: 50,
    height: 100,
    borderTopLeftRadius: 27.5,
                              borderTopRightRadius:27.5,
    backgroundColor: 'red'
}
Posted by: Guest on April-19-2022

Code answers related to "react native red Half Circle bubble"

Code answers related to "Javascript"

Browse Popular Code Answers by Language