Answers for "react native red Oval bubble"

0

react native red Oval bubble

var Oval = React.createClass({
    render: function() {
        return (
            <View style={styles.oval} />
        )
    }
});

  oval: {
    width: 100,
    height: 100,
    borderRadius: 50,
    backgroundColor: 'red',
    transform: [
      {scaleX: 2}
    ]
  },
Posted by: Guest on April-19-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language