start refacto home and fix description

This commit is contained in:
Thomas Demirdjian
2025-09-30 13:37:12 +02:00
parent 3dcf5453ca
commit 306918de00
21 changed files with 1219 additions and 231 deletions
+6 -2
View File
@@ -1,4 +1,4 @@
import { View, Text, Pressable, Image } from "react-native";
import { View, Text, Pressable, Image, FlatList } from "react-native";
import React from "react";
import { LinearGradient } from "./LinearGradient/LinearGradient";
import { Palette, Style } from "../styles";
@@ -15,7 +15,11 @@ const GradientButton = ({
disabled = false,
}) => {
return (
<Pressable onPress={onPress} disabled={disabled} style={{ ...containerStyle, opacity: disabled ? 0.6 : 1 }}>
<Pressable
onPress={onPress}
disabled={disabled}
style={{ ...containerStyle, opacity: disabled ? 0.6 : 1 }}
>
<LinearGradient
colors={colors}
style={{