This commit is contained in:
2024-10-12 03:55:19 +03:00
parent c0da607b72
commit 55ba06295e
37 changed files with 1200 additions and 156 deletions

View File

@@ -1,13 +1,24 @@
import {Button, Text, View} from "react-native";
import {useAppDispatch} from "../../redux/store";
import {logoutUser, useGetPokemonByNameQuery} from "../../features/auth/authSlice.ts.back";
import * as process from "process";
import {NativeModules, Text, View} from "react-native";
import BasicButton from "../../components/BasicButton/BasicButton";
import {randomUUID} from "expo-crypto";
import {useScanningContext} from "../../providers/ScanProvider";
import {dampingFor} from "react-native-toast-message/lib/src/components/AnimatedContainer";
const {AwesomeModule} = NativeModules;
function MoneyScreen() {
const {scan} = useScanningContext();
const a = "123";
return (
<View>
<Text style={{fontSize: 36}}>Money</Text>
<BasicButton
onPress={() => {
console.log("Button pressed");
}}
label={"Press me"}
/>
</View>
)
}