|
|
|
@ -20,7 +20,7 @@ function Chat(props: { navigation: any; }) {
|
|
|
|
|
nav={navigation}
|
|
|
|
|
/>
|
|
|
|
|
<View style={styles.body}>
|
|
|
|
|
<Text style={styles.text}>couille</Text>
|
|
|
|
|
<Text >couille</Text>
|
|
|
|
|
</View>
|
|
|
|
|
<BotBar
|
|
|
|
|
nav={navigation}
|
|
|
|
@ -31,16 +31,6 @@ function Chat(props: { navigation: any; }) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function Button(props: { onPress: any; title?: "Save" | undefined; }) {
|
|
|
|
|
const { onPress, title = 'Save' } = props;
|
|
|
|
|
return (
|
|
|
|
|
<Pressable style={styles.button} onPress={onPress}>
|
|
|
|
|
<Text style={styles.text}>{title}</Text>
|
|
|
|
|
</Pressable>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
|
body: {
|
|
|
|
|
flex: 1,
|
|
|
|
@ -48,7 +38,6 @@ const styles = StyleSheet.create({
|
|
|
|
|
alignItems: 'flex-start',
|
|
|
|
|
width: '70%',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
container: {
|
|
|
|
|
flex: 1,
|
|
|
|
|
backgroundColor: "#45444E",
|
|
|
|
@ -56,77 +45,6 @@ const styles = StyleSheet.create({
|
|
|
|
|
justifyContent: "flex-start",
|
|
|
|
|
alignItems: "center",
|
|
|
|
|
},
|
|
|
|
|
button: {
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
justifyContent: 'center',
|
|
|
|
|
height: '30%',
|
|
|
|
|
width: '100%',
|
|
|
|
|
marginTop: '10%',
|
|
|
|
|
paddingVertical: 12,
|
|
|
|
|
paddingHorizontal: 32,
|
|
|
|
|
borderRadius: 10,
|
|
|
|
|
elevation: 3,
|
|
|
|
|
backgroundColor: '#0085FF',
|
|
|
|
|
},
|
|
|
|
|
text: {
|
|
|
|
|
fontSize: 16,
|
|
|
|
|
lineHeight: 21,
|
|
|
|
|
fontWeight: 'bold',
|
|
|
|
|
letterSpacing: 0.25,
|
|
|
|
|
color: 'white',
|
|
|
|
|
},
|
|
|
|
|
header: {
|
|
|
|
|
flex : 0.15,
|
|
|
|
|
width: '100%',
|
|
|
|
|
flexDirection: 'row',
|
|
|
|
|
backgroundColor: '#2D2C33',
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
justifyContent: 'space-around',
|
|
|
|
|
},
|
|
|
|
|
titre: {
|
|
|
|
|
flex: 0.7,
|
|
|
|
|
flexDirection: 'column',
|
|
|
|
|
textAlign: 'center',
|
|
|
|
|
fontSize: 30,
|
|
|
|
|
fontFamily: 'Helvetica',
|
|
|
|
|
fontWeight: 'bold',
|
|
|
|
|
letterSpacing: 0.25,
|
|
|
|
|
color: 'white',
|
|
|
|
|
},
|
|
|
|
|
engrenage: {
|
|
|
|
|
borderRadius: 50,
|
|
|
|
|
width: 50,
|
|
|
|
|
height: 50,
|
|
|
|
|
},
|
|
|
|
|
avatar: {
|
|
|
|
|
borderRadius: 50,
|
|
|
|
|
width: 50,
|
|
|
|
|
height: 50,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
footer: {
|
|
|
|
|
flex: 0.15,
|
|
|
|
|
flexDirection: 'row',
|
|
|
|
|
backgroundColor: '#2D2C33',
|
|
|
|
|
flexWrap: 'wrap',
|
|
|
|
|
width: '100%',
|
|
|
|
|
justifyContent: 'space-evenly',
|
|
|
|
|
},
|
|
|
|
|
iconFooter: {
|
|
|
|
|
marginBot: 25,
|
|
|
|
|
marginTop: 10,
|
|
|
|
|
width: 65,
|
|
|
|
|
height: 50,
|
|
|
|
|
},
|
|
|
|
|
iconStore: {
|
|
|
|
|
marginBot: 25,
|
|
|
|
|
marginTop: 10,
|
|
|
|
|
marginLeft: 7,
|
|
|
|
|
marginRight: 8,
|
|
|
|
|
width: 50,
|
|
|
|
|
height: 50,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export default Chat
|