我画了一个我想用html / css制作履历生成器的图像,但是我停留在两个方面(我的手绘图像在下面)。
我曾经尝试过搜索互联网,但是运气不高。
非常感谢您的帮助。谢谢!
`import React from 'react';
import { StyleSheet, Text, View, TextInput } from 'react-native';
export default function App() {
return (
< View style = {styles.container}>
<TextInput style = {styles.box}
multiline = {true}
numberOfLines = {5} />
</View>
);
}
const styles = StyleSheet.create({
box: {
borderWidth: 5,
height: 450,
width: 250,
backgroundColor: '#F8F8FF',
borderRadius: 10
},
container: {
justifyContent: 'center',
alignItems: 'center',
flex: 1,
backgroundColor: '#FFA500'
}
});
`