You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
import { StatusBar } from 'expo-status-bar';
|
|
import { StyleSheet, Text, View, Button } from 'react-native';
|
|
import React, { useState } from "react";
|
|
|
|
// @ts-ignore
|
|
export default function Main(props : mainProps){
|
|
const [count, setCount] = useState(0);
|
|
return (
|
|
<View style={styles.container}>
|
|
<View style={styles.border}>
|
|
<Text>Maman, prend la caméra ! !</Text>
|
|
<StatusBar style="auto" />
|
|
<Text>{count}</Text>
|
|
<Button onPress={()=> setCount(count+1)} title="+1"/>
|
|
</View>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: '#ffffff',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
borderWidth: 5,
|
|
borderColor : "#ff00ff",
|
|
},
|
|
border: {
|
|
flex: 1,
|
|
backgroundColor: '#ff0000',
|
|
maxHeight : 100,
|
|
borderWidth : 15,
|
|
borderRadius : 15,
|
|
borderColor : '#00ffaa',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
}
|
|
});
|