14c880123c
Expo app with dashboard, time clock, invoices, and settings — native tabs, glass UI, theme-aware components, and iOS Live Activities. Co-authored-by: Cursor <cursoragent@cursor.com>
23 lines
695 B
TypeScript
23 lines
695 B
TypeScript
import { Link, type Href } from 'expo-router';
|
|
import * as WebBrowser from 'expo-web-browser';
|
|
import type { ComponentProps } from 'react';
|
|
import { Platform } from 'react-native';
|
|
|
|
export function ExternalLink(props: Omit<ComponentProps<typeof Link>, 'href'> & { href: string }) {
|
|
return (
|
|
<Link
|
|
target="_blank"
|
|
{...props}
|
|
href={props.href as Href}
|
|
onPress={(e) => {
|
|
if (Platform.OS !== 'web') {
|
|
// Prevent the default behavior of linking to the default browser on native.
|
|
e.preventDefault();
|
|
// Open the link in an in-app browser.
|
|
WebBrowser.openBrowserAsync(props.href as string);
|
|
}
|
|
}}
|
|
/>
|
|
);
|
|
}
|