react-native 三角形样式实现

const styles = StyleSheet.create({

triangleViewStyle:{

        width:0,

        height: 0,

        borderColor: '#2085FF',

        borderLeftWidth:7,

        borderRightWidth:7,

        borderBottomWidth:10,

        marginBottom:0,

    }

});

你可能感兴趣的:(react-native 三角形样式实现)