Commit c7928ff3 by G

basic of the qr code screen

parent daf6ed72
import type { MainStackScreenComponentProps } from "@/navigations/Types";
import BackgroundWithBeasyIconAndWhiteContentArea from "@components/backgrounds/BackgroundWithBeasyIconAndWhiteContentArea";
import Box from "@components/bases/Box";
import Text from "@components/bases/Text";
import { LOG } from "@logger";
const log = LOG.extend("WaveQrCodePaymentScreen");
const WaveQrCodePaymentScreen: MainStackScreenComponentProps<"waveQrCodePaymentScreen"> = ({
route,
navigation,
}) => {
return (
<BackgroundWithBeasyIconAndWhiteContentArea goBack={true}>
<Box
style={{
height: "100%",
width: "100%",
}}
p={"m"}
>
<Text>WaveQrCodePaymentScreen</Text>
</Box>
</BackgroundWithBeasyIconAndWhiteContentArea>
);
};
export default WaveQrCodePaymentScreen;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment