import React from 'react' import { View, Text, Pressable } from 'react-native'; import Icon from 'react-native-vector-icons/FontAwesome'; import { StyleSheet } from 'react-native'; import { useNavigation } from '@react-navigation/native'; export const QRFlotante = () => { const navigate = useNavigation(); return ( navigate.navigate("CamaraQrNavigate")} style={styles.container}> Escanear QR ) } const styles = StyleSheet.create({ cont:{ color: 'white', fontWeight: 'bold', paddingRight: 10, }, container: { position: 'absolute', right: 15, bottom: 40, width: 160, height: 50, display: 'flex', flexDirection: 'row', justifyContent: 'center', alignItems: 'center', backgroundColor: '#572364', borderRadius: 150, } });