crpt
This commit is contained in:
		@@ -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>
 | 
			
		||||
    )
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user