parent
7dd7b2a482
commit
1887022681
@ -1,32 +1,33 @@
|
|||||||
import {SafeAreaView, View, Text, ImageBackground, TouchableOpacity} from "react-native";
|
|
||||||
import InternalError from "@/app/(error)/InternalErrorProblem";
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
import {
|
||||||
|
ImageBackground,
|
||||||
|
SafeAreaView,
|
||||||
|
Text,
|
||||||
|
TouchableOpacity,
|
||||||
|
View,
|
||||||
|
} from "react-native";
|
||||||
|
|
||||||
export default function AddScreen() {
|
export default function AddScreen() {
|
||||||
return (
|
return (
|
||||||
<ImageBackground
|
<ImageBackground
|
||||||
className="h-full w-full"
|
className="h-full w-full"
|
||||||
source={require("assets/images/TrainingPresentation.png")}
|
source={require("assets/images/TrainingPresentation.png")}
|
||||||
>
|
>
|
||||||
<SafeAreaView>
|
<SafeAreaView>
|
||||||
<View className="flex-row justify-between items-center mb-4">
|
<View className="flex-row justify-between items-center mb-4">
|
||||||
<TouchableOpacity
|
<TouchableOpacity className="bg-blue-500 px-4 py-2 rounded"></TouchableOpacity>
|
||||||
className="bg-blue-500 px-4 py-2 rounded"
|
|
||||||
>
|
|
||||||
</TouchableOpacity>
|
|
||||||
|
|
||||||
<TouchableOpacity
|
<TouchableOpacity className="bg-green-500 px-4 py-2 rounded">
|
||||||
className="bg-green-500 px-4 py-2 rounded"
|
<Text className="text-white font-bold">Action</Text>
|
||||||
>
|
</TouchableOpacity>
|
||||||
<Text className="text-white font-bold">Action</Text>
|
</View>
|
||||||
</TouchableOpacity>
|
|
||||||
</View>
|
|
||||||
|
|
||||||
<View className="flex-1 items-center justify-center">
|
<View className="flex-1 items-center justify-center">
|
||||||
<Text className="text-xl font-semibold">Contenu de l'entraînement</Text>
|
<Text className="text-xl font-semibold">
|
||||||
</View>
|
Contenu de l'entraînement
|
||||||
</SafeAreaView>
|
</Text>
|
||||||
|
</View>
|
||||||
</ImageBackground>
|
</SafeAreaView>
|
||||||
);
|
</ImageBackground>
|
||||||
}
|
);
|
||||||
|
}
|
||||||
|
Loading…
Reference in new issue