From e354a23690a1ed8217161856ec012217e13a6a16 Mon Sep 17 00:00:00 2001 From: G Date: Thu, 25 Apr 2024 16:46:07 +0000 Subject: [PATCH] HomePageWithPaymentOptions containing the top part + balance viewer --- App.tsx | 4 ++-- src/screens/HomePageWithPaymentOptions.tsx | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 2 deletions(-) create mode 100644 src/screens/HomePageWithPaymentOptions.tsx diff --git a/App.tsx b/App.tsx index aba5bed..9c1f1f4 100644 --- a/App.tsx +++ b/App.tsx @@ -1,5 +1,5 @@ import theme from "@/themes/Theme"; -import UserLoginScreen from "@screens/UserLoginScreen"; +import HomePageWithPaymentOptions from "@screens/HomePageWithPaymentOptions"; import { ThemeProvider } from "@shopify/restyle"; import { StatusBar } from "expo-status-bar"; import { StyleSheet } from "react-native"; @@ -11,7 +11,7 @@ export default function App() { {/* */} - + {/* */} diff --git a/src/screens/HomePageWithPaymentOptions.tsx b/src/screens/HomePageWithPaymentOptions.tsx new file mode 100644 index 0000000..906d326 --- /dev/null +++ b/src/screens/HomePageWithPaymentOptions.tsx @@ -0,0 +1,35 @@ +import BalanceContainer from "@components/BalanceContainer"; +import BeasyLogoIcon from "@components/BeasyLogoIcon"; +import NotificationIconButton from "@components/NotificationIconButton"; +import BackgroundGreenWhiteContentArea from "@components/backgrounds/BackgroundGreenWhiteContentArea"; +import Box from "@components/bases/Box"; +import { SafeAreaView } from "react-native-safe-area-context"; + +const HomePageWithPaymentOptions = () => { + return ( + + + + {/* HomePageWithPaymentOptions */} + + + + + + + + + ); +}; + +export default HomePageWithPaymentOptions; -- libgit2 0.27.1