/* * File: SetupBiometricScreen.tsx * Description: Screen for setting up biometric authentication * Design & Developed by Tech4Biz Solutions * Copyright (c) Spurrin Innovations. All rights reserved. */ import React from 'react'; import { View, Text, StyleSheet } from 'react-native'; import { Button } from 'shared/src/components/Button'; import { Colors, Spacing, Typography } from 'shared/src/theme'; import { useBiometric } from '../hooks/useBiometric'; /** * SetupBiometricScreen - allows user to setup biometric authentication */ const SetupBiometricScreen: React.FC = () => { const { authenticate } = useBiometric(); const handleSetup = async () => { await authenticate(); // TODO: Handle result and navigate }; return ( Setup Biometric Login Enable Face ID or Touch ID for quick and secure login.