[React Native] Build a Separator UI component

时间:2023-03-08 20:50:50

In this lesson we'll create a reusable React Native separator component which manages it's own styles.

import React from 'react';
import {View, StyleSheet} from 'react-native'; var styles = StyleSheet.create({
divdir: {
height: ,
backgroundColor: '#E4E4E4',
flex: ,
marginLeft:
},
}); class Divdir extends React.Component{
render(){
return (
<View style={styles.divdir} />
);
}
}; module.exports = Divdir;

[React Native] Build a Separator UI component