11// SPDX-License-Identifier: BUSL-1.1; Copyright (c) 2025 Social Connect Labs, Inc.; Licensed under BUSL-1.1 (see LICENSE); Apache-2.0 from 2029-06-11
22
33import React from 'react' ;
4- import { StyleSheet , View } from 'react-native' ;
4+ import { Linking , StyleSheet , View } from 'react-native' ;
55import { Gesture , GestureDetector } from 'react-native-gesture-handler' ;
66import { useSafeAreaInsets } from 'react-native-safe-area-context' ;
77import { Anchor , Text , YStack } from 'tamagui' ;
@@ -10,7 +10,11 @@ import AbstractButton from '../../components/buttons/AbstractButton';
1010import { BodyText } from '../../components/typography/BodyText' ;
1111import { Caption } from '../../components/typography/Caption' ;
1212import { AppEvents } from '../../consts/analytics' ;
13- import { privacyUrl , termsUrl } from '../../consts/links' ;
13+ import {
14+ privacyUrl ,
15+ supportedBiometricIdsUrl ,
16+ termsUrl ,
17+ } from '../../consts/links' ;
1418import useConnectionModal from '../../hooks/useConnectionModal' ;
1519import useHapticNavigation from '../../hooks/useHapticNavigation' ;
1620import Logo from '../../images/logo.svg' ;
@@ -64,10 +68,12 @@ const LaunchScreen: React.FC<LaunchScreenProps> = ({}) => {
6468 borderColor = { zinc800 }
6569 color = { white }
6670 borderWidth = { 1 }
67- // TODO: add onPress event
68- onPress = { ( ) => { } }
71+ trackEvent = { AppEvents . SUPPORTED_BIOMETRIC_IDS }
72+ onPress = { ( ) => {
73+ Linking . openURL ( supportedBiometricIdsUrl ) ;
74+ } }
6975 >
70- List of supported Biometric IDs
76+ List of Supported Biometric IDs
7177 </ AbstractButton >
7278
7379 < AbstractButton
@@ -76,7 +82,7 @@ const LaunchScreen: React.FC<LaunchScreenProps> = ({}) => {
7682 bgColor = { white }
7783 color = { black }
7884 >
79- I have a passport or Biometric ID
85+ I have a Passport or Biometric ID
8086 </ AbstractButton >
8187 </ YStack >
8288
0 commit comments