diff --git a/src/screens/PaymentResultScreen.tsx b/src/screens/PaymentResultScreen.tsx
index 64f0ba1..2a42c56 100644
--- a/src/screens/PaymentResultScreen.tsx
+++ b/src/screens/PaymentResultScreen.tsx
@@ -1,14 +1,12 @@
+import { asp as g } from "@asp/asp";
+import { BarnoinPayBackground } from "@components/BarnoinPayBackground";
import BeasyLogoIcon from "@components/BeasyLogoIcon";
-import Button from "@components/Button";
-import BeasyDefaultBackgroundWrapper from "@components/backgrounds/BeasyDefaultBackground";
-import Box from "@components/bases/Box";
-import Text from "@components/bases/Text";
-import GoBackIconButton from "@components/GoBackIconButton";
+import * as Button from "@components/ButtonNew";
import CheckIcon from "@components/icons/CheckIcon";
+import { AntDesign } from "@expo/vector-icons";
import { LOG } from "@logger";
-import { CommonActions } from "@react-navigation/native";
-// import { Text } from "react-native";
-import { SafeAreaView, useSafeAreaInsets } from "react-native-safe-area-context";
+import { Text, View } from "react-native";
+import { useSafeAreaInsets } from "react-native-safe-area-context";
import type { MainStackScreenComponentProps } from "@/navigations/types";
const log = LOG.extend("PaymentResultScreen");
@@ -20,122 +18,109 @@ const PaymentResultScreen: MainStackScreenComponentProps<"paymentResultScreen">
const insets = useSafeAreaInsets();
log.debug("insets", insets);
return (
-
-
-
+
+
+ navigation.goBack()}
+ />
+
+
+
-
-
- {
- navigation.dispatch(
- CommonActions.reset({
- index: 1,
- routes: [{ name: "appBottomTabsNavigator" }],
- }),
- );
- }}
- />
-
-
-
-
-
-
- Transactions effectué avec succès !
-
-
-
-
-
+
+
+
+ Transactions effectué avec succès !
+
+
+ Imprimer le réçu
+
+
+
+
+ Caisse
+ 00147C
+
+
+ Reference
+ CP...
+
+
+ Mode de paiement
+ Orange
+
+
+ Infos client
+ Dogeless Miso
+
+
+ Montant
+ 10
+
+
+ N° Client
+ Dogeless Misso
+
+
+
+
+
);
};