- ProtectionOnboardingSheet: Android a11y 2-step flow mit tamper-arm nach Return - ProtectionDetailsSheet: cleanup, iOS/Android split, locked-state logic - ProtectionSlide: neuer Onboarding-Slide für Protection-Intro - _layout.tsx: reconcileVpn on app-foreground (Android VPN self-heal) - devices.tsx: Two-device approval flow - useProtectionState: applyCooldownDisableIfElapsed, forceDisable on cooldown-end - iOS module Info.plist: bundle version bumps - app.config.ts: minor config updates - tmp/.deploy-runtimes: build-time metrics aktualisiert Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
701 lines
21 KiB
TypeScript
701 lines
21 KiB
TypeScript
import {
|
|
ActivityIndicator,
|
|
Alert,
|
|
Platform,
|
|
ScrollView,
|
|
Text,
|
|
TouchableOpacity,
|
|
View,
|
|
} from 'react-native';
|
|
import { Button } from '../components/Button';
|
|
import { useEffect, useState } from 'react';
|
|
import { useSafeAreaInsets } from 'react-native-safe-area-context';
|
|
import { Ionicons } from '@expo/vector-icons';
|
|
import { MenuView } from '@react-native-menu/menu';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { useColors } from '../lib/theme';
|
|
import { useDevicesStore, type UserDevice } from '../stores/devices';
|
|
|
|
function formatCountdown(isoTarget: string): string {
|
|
const ms = new Date(isoTarget).getTime() - Date.now();
|
|
if (ms <= 0) return '0min';
|
|
const totalMin = Math.floor(ms / 60_000);
|
|
const h = Math.floor(totalMin / 60);
|
|
const m = totalMin % 60;
|
|
if (h > 0) return `${h}h ${m}min`;
|
|
return `${m}min`;
|
|
}
|
|
import { useProtectedDevicesStore, type ProtectedDevice } from '../stores/protectedDevices';
|
|
import { useProtectedDevicesRealtime } from '../hooks/useProtectedDevicesRealtime';
|
|
import { useUserPlan } from '../hooks/useUserPlan';
|
|
import { AppHeader } from '../components/AppHeader';
|
|
import { AddMacSheet } from '../components/devices/AddMacSheet';
|
|
import { AddWindowsSheet } from '../components/devices/AddWindowsSheet';
|
|
import { DeviceProgressBar } from '../components/devices/DeviceProgressBar';
|
|
|
|
// ─── Helpers ─────────────────────────────────────────────────────────────────
|
|
|
|
function mobileIcon(platform: string): React.ComponentProps<typeof Ionicons>['name'] {
|
|
if (platform === 'ios') return 'logo-apple';
|
|
if (platform === 'android') return 'logo-android';
|
|
return 'phone-portrait-outline';
|
|
}
|
|
|
|
function protectedDeviceIcon(platform: string): React.ComponentProps<typeof Ionicons>['name'] {
|
|
if (platform === 'mac') return 'laptop-outline';
|
|
if (platform === 'windows') return 'desktop-outline';
|
|
return 'globe-outline';
|
|
}
|
|
|
|
function formatLastSeen(iso: string, t: (k: string, o?: any) => string): string {
|
|
const ms = Date.now() - new Date(iso).getTime();
|
|
const min = Math.floor(ms / 60_000);
|
|
if (min < 1) return t('settings.devices_just_now');
|
|
if (min < 60) return t('settings.devices_mins_ago', { count: min });
|
|
const hr = Math.floor(min / 60);
|
|
if (hr < 24) return t('settings.devices_hours_ago', { count: hr });
|
|
const day = Math.floor(hr / 24);
|
|
if (day < 30) return t('settings.devices_days_ago', { count: day });
|
|
return new Date(iso).toLocaleDateString(Platform.OS === 'ios' ? undefined : 'de-DE', {
|
|
day: '2-digit',
|
|
month: 'short',
|
|
year: 'numeric',
|
|
});
|
|
}
|
|
|
|
function formatSince(iso: string): string {
|
|
return new Date(iso).toLocaleDateString(Platform.OS === 'ios' ? undefined : 'de-DE', {
|
|
day: '2-digit',
|
|
month: 'short',
|
|
year: 'numeric',
|
|
});
|
|
}
|
|
|
|
// ─── Status Badge ─────────────────────────────────────────────────────────────
|
|
|
|
function StatusBadge({ status }: { status: ProtectedDevice['status'] }) {
|
|
const { t } = useTranslation();
|
|
const colors = useColors();
|
|
|
|
const config: Record<string, { label: string; bg: string; fg: string }> = {
|
|
pending: {
|
|
label: t('devices.status_pending'),
|
|
bg: 'rgba(245,158,11,0.12)',
|
|
fg: '#f59e0b',
|
|
},
|
|
active: {
|
|
label: t('devices.status_active'),
|
|
bg: colors.success + '1a',
|
|
fg: colors.success,
|
|
},
|
|
revoked: {
|
|
label: t('devices.status_revoked'),
|
|
bg: 'rgba(0,0,0,0.06)',
|
|
fg: colors.textMuted,
|
|
},
|
|
degraded: {
|
|
label: t('plan_limit.device_degraded_title'),
|
|
bg: 'rgba(220,38,38,0.1)',
|
|
fg: colors.error,
|
|
},
|
|
};
|
|
const resolved = config[status] ?? { label: status, bg: 'rgba(0,0,0,0.06)', fg: colors.textMuted };
|
|
|
|
return (
|
|
<View
|
|
style={{
|
|
paddingHorizontal: 6,
|
|
paddingVertical: 2,
|
|
borderRadius: 6,
|
|
backgroundColor: resolved.bg,
|
|
}}
|
|
>
|
|
<Text style={{ fontSize: 10, color: resolved.fg, fontFamily: 'Nunito_600SemiBold' }}>
|
|
{resolved.label}
|
|
</Text>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
// ─── Mobile Device Row ────────────────────────────────────────────────────────
|
|
|
|
function MobileDeviceRow({
|
|
device,
|
|
onRemove,
|
|
onRequestRelease,
|
|
onCancelRelease,
|
|
}: {
|
|
device: UserDevice;
|
|
onRemove: (id: string) => void;
|
|
onRequestRelease: (id: string) => void;
|
|
onCancelRelease: (id: string) => void;
|
|
}) {
|
|
const { t } = useTranslation();
|
|
const colors = useColors();
|
|
|
|
const isBound = !!device.boundToPlan;
|
|
const releaseAt = device.releaseRequestedAt
|
|
? new Date(new Date(device.releaseRequestedAt).getTime() + 24 * 60 * 60 * 1000).toISOString()
|
|
: null;
|
|
const releaseActive = !!releaseAt && new Date(releaseAt).getTime() > Date.now();
|
|
|
|
function confirmRemove() {
|
|
Alert.alert(
|
|
t('settings.devices_remove_title'),
|
|
t('settings.devices_remove_desc'),
|
|
[
|
|
{ text: t('common.cancel'), style: 'cancel' },
|
|
{
|
|
text: t('settings.devices_remove_confirm'),
|
|
style: 'destructive',
|
|
onPress: () => onRemove(device.id),
|
|
},
|
|
]
|
|
);
|
|
}
|
|
|
|
function confirmRequestRelease() {
|
|
Alert.alert(
|
|
t('devices.release_request_title'),
|
|
t('devices.release_request_body'),
|
|
[
|
|
{ text: t('common.cancel'), style: 'cancel' },
|
|
{
|
|
text: t('devices.release_request_confirm'),
|
|
style: 'destructive',
|
|
onPress: () => onRequestRelease(device.id),
|
|
},
|
|
]
|
|
);
|
|
}
|
|
|
|
function confirmCancelRelease() {
|
|
Alert.alert(
|
|
t('devices.release_cancel_confirm'),
|
|
t('devices.release_cancel_body'),
|
|
[
|
|
{ text: t('common.cancel'), style: 'cancel' },
|
|
{
|
|
text: t('devices.release_cancel_cta'),
|
|
style: 'destructive',
|
|
onPress: () => onCancelRelease(device.id),
|
|
},
|
|
]
|
|
);
|
|
}
|
|
|
|
const deviceName = device.model ?? device.name ?? device.platform;
|
|
const footerText = `${formatLastSeen(device.lastSeenAt, t)} · ${t('settings.devices_since')} ${formatSince(device.createdAt)}`;
|
|
|
|
return (
|
|
<View
|
|
style={{
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
gap: 12,
|
|
paddingHorizontal: 14,
|
|
paddingVertical: 14,
|
|
}}
|
|
>
|
|
<View
|
|
style={{
|
|
width: 40,
|
|
height: 40,
|
|
borderRadius: 12,
|
|
backgroundColor: colors.surfaceElevated,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
}}
|
|
>
|
|
<Ionicons name={mobileIcon(device.platform)} size={20} color={colors.text} />
|
|
</View>
|
|
|
|
<View style={{ flex: 1, minWidth: 0 }}>
|
|
<View style={{ flexDirection: 'row', alignItems: 'center', gap: 6 }}>
|
|
<Text
|
|
numberOfLines={1}
|
|
style={{
|
|
fontSize: 15,
|
|
color: colors.text,
|
|
fontFamily: 'Nunito_600SemiBold',
|
|
flexShrink: 1,
|
|
}}
|
|
>
|
|
{deviceName}
|
|
</Text>
|
|
{device.isCurrent ? (
|
|
<View
|
|
style={{
|
|
paddingHorizontal: 6,
|
|
paddingVertical: 2,
|
|
borderRadius: 6,
|
|
backgroundColor: 'rgba(249,115,22,0.12)',
|
|
}}
|
|
>
|
|
<Text
|
|
style={{
|
|
fontSize: 10,
|
|
color: colors.brandOrange,
|
|
fontFamily: 'Nunito_600SemiBold',
|
|
}}
|
|
>
|
|
{t('settings.devices_this_device')}
|
|
</Text>
|
|
</View>
|
|
) : null}
|
|
{isBound && !releaseActive ? (
|
|
<View
|
|
style={{
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
gap: 3,
|
|
paddingHorizontal: 6,
|
|
paddingVertical: 2,
|
|
borderRadius: 6,
|
|
backgroundColor: 'rgba(37,99,235,0.1)',
|
|
}}
|
|
>
|
|
<Ionicons name="lock-closed" size={9} color="#2563eb" />
|
|
<Text
|
|
style={{
|
|
fontSize: 10,
|
|
color: '#2563eb',
|
|
fontFamily: 'Nunito_600SemiBold',
|
|
}}
|
|
>
|
|
{t('devices.bound_badge')}
|
|
</Text>
|
|
</View>
|
|
) : null}
|
|
</View>
|
|
|
|
<Text
|
|
numberOfLines={1}
|
|
style={{
|
|
fontSize: 11,
|
|
color: releaseActive ? '#b45309' : colors.textMuted,
|
|
fontFamily: 'Nunito_400Regular',
|
|
marginTop: 3,
|
|
}}
|
|
>
|
|
{releaseActive && releaseAt
|
|
? t('devices.release_countdown', { remaining: formatCountdown(releaseAt) })
|
|
: footerText}
|
|
</Text>
|
|
</View>
|
|
|
|
{device.isCurrent ? null : releaseActive ? (
|
|
<TouchableOpacity
|
|
onPress={confirmCancelRelease}
|
|
hitSlop={8}
|
|
activeOpacity={0.5}
|
|
>
|
|
<Ionicons name="close-circle-outline" size={20} color={colors.textMuted} />
|
|
</TouchableOpacity>
|
|
) : isBound ? (
|
|
<TouchableOpacity
|
|
onPress={confirmRequestRelease}
|
|
hitSlop={8}
|
|
activeOpacity={0.5}
|
|
>
|
|
<Ionicons name="lock-open-outline" size={18} color={colors.error} />
|
|
</TouchableOpacity>
|
|
) : (
|
|
<TouchableOpacity
|
|
onPress={confirmRemove}
|
|
hitSlop={8}
|
|
activeOpacity={0.5}
|
|
>
|
|
<Ionicons name="trash-outline" size={18} color={colors.error} />
|
|
</TouchableOpacity>
|
|
)}
|
|
</View>
|
|
);
|
|
}
|
|
|
|
// ─── Protected Device Row ────────────────────────────────────────────────────
|
|
|
|
function ProtectedDeviceRow({
|
|
device,
|
|
onRemove,
|
|
}: {
|
|
device: ProtectedDevice;
|
|
onRemove: (id: string) => void;
|
|
}) {
|
|
const { t } = useTranslation();
|
|
const colors = useColors();
|
|
|
|
const menuActions = device.status === 'pending'
|
|
? [
|
|
{ id: 'remove', title: t('settings.devices_remove_confirm'), attributes: { destructive: true } },
|
|
]
|
|
: [
|
|
{ id: 'remove', title: t('settings.devices_remove_confirm'), attributes: { destructive: true } },
|
|
];
|
|
|
|
function handleMenuSelect(id: string) {
|
|
if (id === 'remove') {
|
|
Alert.alert(
|
|
t('devices.remove_warning_title'),
|
|
t('devices.remove_warning_body'),
|
|
[
|
|
{ text: t('common.cancel'), style: 'cancel' },
|
|
{
|
|
text: t('settings.devices_remove_confirm'),
|
|
style: 'destructive',
|
|
onPress: () => onRemove(device.id),
|
|
},
|
|
]
|
|
);
|
|
}
|
|
}
|
|
|
|
return (
|
|
<View
|
|
style={{
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
gap: 12,
|
|
paddingHorizontal: 14,
|
|
paddingVertical: 14,
|
|
}}
|
|
>
|
|
<View
|
|
style={{
|
|
width: 40,
|
|
height: 40,
|
|
borderRadius: 12,
|
|
backgroundColor: colors.surfaceElevated,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
}}
|
|
>
|
|
<Ionicons name={protectedDeviceIcon(device.platform)} size={20} color={colors.text} />
|
|
</View>
|
|
|
|
<View style={{ flex: 1, minWidth: 0 }}>
|
|
<View style={{ flexDirection: 'row', alignItems: 'center', gap: 6 }}>
|
|
<Text
|
|
numberOfLines={1}
|
|
style={{
|
|
fontSize: 15,
|
|
color: colors.text,
|
|
fontFamily: 'Nunito_600SemiBold',
|
|
flexShrink: 1,
|
|
}}
|
|
>
|
|
{device.label}
|
|
</Text>
|
|
<StatusBadge status={device.status} />
|
|
</View>
|
|
|
|
<Text
|
|
numberOfLines={1}
|
|
style={{
|
|
fontSize: 11,
|
|
color: device.status === 'degraded' ? colors.error : colors.textMuted,
|
|
fontFamily: 'Nunito_400Regular',
|
|
marginTop: 3,
|
|
}}
|
|
>
|
|
{device.status === 'degraded'
|
|
? t('plan_limit.device_degraded_body')
|
|
: `${t('settings.devices_since')} ${formatSince(device.createdAt)}`}
|
|
</Text>
|
|
</View>
|
|
|
|
<MenuView
|
|
title={device.label}
|
|
actions={menuActions}
|
|
onPressAction={({ nativeEvent: { event } }) => handleMenuSelect(event)}
|
|
shouldOpenOnLongPress={false}
|
|
>
|
|
<TouchableOpacity
|
|
hitSlop={8}
|
|
activeOpacity={0.5}
|
|
>
|
|
<Ionicons name="ellipsis-horizontal" size={18} color={colors.textMuted} />
|
|
</TouchableOpacity>
|
|
</MenuView>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
// ─── Section Card wrapper ─────────────────────────────────────────────────────
|
|
|
|
function SectionCard({ children }: { children: React.ReactNode }) {
|
|
const colors = useColors();
|
|
return (
|
|
<View
|
|
style={{
|
|
backgroundColor: colors.surface,
|
|
borderRadius: 14,
|
|
overflow: 'hidden',
|
|
shadowColor: '#000',
|
|
shadowOffset: { width: 0, height: 1 },
|
|
shadowOpacity: 0.04,
|
|
shadowRadius: 3,
|
|
elevation: 1,
|
|
}}
|
|
>
|
|
{children}
|
|
</View>
|
|
);
|
|
}
|
|
|
|
function SectionLabel({ title }: { title: string }) {
|
|
const colors = useColors();
|
|
return (
|
|
<Text
|
|
style={{
|
|
fontSize: 11,
|
|
color: colors.textMuted,
|
|
fontFamily: 'Nunito_600SemiBold',
|
|
textTransform: 'uppercase',
|
|
letterSpacing: 1,
|
|
marginBottom: 8,
|
|
marginLeft: 4,
|
|
}}
|
|
>
|
|
{title}
|
|
</Text>
|
|
);
|
|
}
|
|
|
|
// ─── Screen ──────────────────────────────────────────────────────────────────
|
|
|
|
export default function DevicesScreen() {
|
|
const insets = useSafeAreaInsets();
|
|
const { t } = useTranslation();
|
|
const colors = useColors();
|
|
const { plan } = useUserPlan();
|
|
const isLegend = plan === 'legend';
|
|
|
|
const {
|
|
devices: mobileDevices,
|
|
loading: mobileLoading,
|
|
loadDevices,
|
|
removeDevice: removeMobileDevice,
|
|
requestRelease,
|
|
cancelRelease,
|
|
} = useDevicesStore();
|
|
|
|
const {
|
|
devices: protectedDevices,
|
|
loading: protectedLoading,
|
|
load: loadProtected,
|
|
remove: removeProtected,
|
|
} = useProtectedDevicesStore();
|
|
|
|
const [addMacVisible, setAddMacVisible] = useState(false);
|
|
const [addWindowsVisible, setAddWindowsVisible] = useState(false);
|
|
|
|
useEffect(() => {
|
|
loadDevices();
|
|
loadProtected();
|
|
}, []);
|
|
|
|
useProtectedDevicesRealtime();
|
|
|
|
const TOTAL_DEVICE_SLOTS = 3;
|
|
const activeProtectedCount = protectedDevices.filter((d) => d.status !== 'revoked').length;
|
|
const totalRegistered = mobileDevices.length + activeProtectedCount;
|
|
const atDeviceLimit = isLegend && totalRegistered >= TOTAL_DEVICE_SLOTS;
|
|
|
|
// Mobile zuerst (current oben), danach Desktop/Protected.
|
|
const sortedMobile = [...mobileDevices].sort((a, b) => {
|
|
if (a.isCurrent && !b.isCurrent) return -1;
|
|
if (!a.isCurrent && b.isCurrent) return 1;
|
|
return new Date(b.lastSeenAt).getTime() - new Date(a.lastSeenAt).getTime();
|
|
});
|
|
const isLoading = mobileLoading || protectedLoading;
|
|
const isEmpty = !isLoading && sortedMobile.length === 0 && protectedDevices.length === 0;
|
|
const subtitle = isLegend ? t('devices.subtitle_legend') : t('devices.subtitle_free');
|
|
|
|
async function handleRemoveProtected(id: string) {
|
|
try {
|
|
const { manualRemovalRequired } = await removeProtected(id);
|
|
if (manualRemovalRequired) {
|
|
Alert.alert(t('devices.remove_warning_title'), t('devices.remove_warning_body'));
|
|
}
|
|
} catch {
|
|
Alert.alert(t('common.error'), t('common.unknown_error'));
|
|
}
|
|
}
|
|
|
|
return (
|
|
<View style={{ flex: 1, backgroundColor: colors.bg }}>
|
|
<AppHeader showBack title={t('settings.devices')} />
|
|
|
|
<ScrollView
|
|
style={{ flex: 1 }}
|
|
contentContainerStyle={{
|
|
paddingHorizontal: 16,
|
|
paddingTop: 16,
|
|
paddingBottom: insets.bottom + 40,
|
|
gap: 24,
|
|
}}
|
|
showsVerticalScrollIndicator={false}
|
|
>
|
|
{/* Subtitle + progress */}
|
|
<View style={{ gap: 8, marginBottom: -12 }}>
|
|
<Text
|
|
style={{
|
|
fontSize: 13,
|
|
color: colors.textMuted,
|
|
fontFamily: 'Nunito_400Regular',
|
|
lineHeight: 18,
|
|
}}
|
|
>
|
|
{subtitle}
|
|
</Text>
|
|
{isLegend ? (
|
|
<DeviceProgressBar
|
|
count={totalRegistered}
|
|
max={TOTAL_DEVICE_SLOTS}
|
|
atLimit={atDeviceLimit}
|
|
/>
|
|
) : null}
|
|
</View>
|
|
|
|
{/* Unified devices section: Mobile zuerst, dann Desktop */}
|
|
<View>
|
|
<SectionLabel title={t('settings.devices')} />
|
|
<SectionCard>
|
|
{isLoading && isEmpty ? (
|
|
<View style={{ paddingVertical: 32, alignItems: 'center' }}>
|
|
<ActivityIndicator color={colors.brandOrange} />
|
|
</View>
|
|
) : isEmpty ? (
|
|
<View style={{ paddingVertical: 20, alignItems: 'center' }}>
|
|
<Text
|
|
style={{
|
|
fontSize: 13,
|
|
color: colors.textMuted,
|
|
fontFamily: 'Nunito_400Regular',
|
|
}}
|
|
>
|
|
{t('settings.devices_empty')}
|
|
</Text>
|
|
</View>
|
|
) : (
|
|
<>
|
|
{sortedMobile.map((device, i) => {
|
|
const isLast =
|
|
i === sortedMobile.length - 1 && protectedDevices.length === 0;
|
|
return (
|
|
<View
|
|
key={device.id}
|
|
style={{
|
|
borderBottomWidth: isLast ? 0 : 1,
|
|
borderBottomColor: colors.border,
|
|
}}
|
|
>
|
|
<MobileDeviceRow
|
|
device={device}
|
|
onRemove={removeMobileDevice}
|
|
onRequestRelease={requestRelease}
|
|
onCancelRelease={cancelRelease}
|
|
/>
|
|
</View>
|
|
);
|
|
})}
|
|
{protectedDevices.map((device, i) => (
|
|
<View
|
|
key={device.id}
|
|
style={{
|
|
borderBottomWidth: i < protectedDevices.length - 1 ? 1 : 0,
|
|
borderBottomColor: colors.border,
|
|
}}
|
|
>
|
|
<ProtectedDeviceRow device={device} onRemove={handleRemoveProtected} />
|
|
</View>
|
|
))}
|
|
</>
|
|
)}
|
|
</SectionCard>
|
|
</View>
|
|
|
|
{/* CTA or Upgrade */}
|
|
{isLegend ? (
|
|
atDeviceLimit ? (
|
|
<Button
|
|
title={t('devices.add_device')}
|
|
icon="add-circle-outline"
|
|
disabled
|
|
style={{ backgroundColor: colors.surfaceElevated }}
|
|
/>
|
|
) : (
|
|
<MenuView
|
|
title={t('devices.add_device')}
|
|
actions={[
|
|
{ id: 'mac', title: 'Mac' },
|
|
{ id: 'windows', title: 'Windows-PC' },
|
|
]}
|
|
onPressAction={({ nativeEvent: { event } }) => {
|
|
if (event === 'mac') setAddMacVisible(true);
|
|
else if (event === 'windows') setAddWindowsVisible(true);
|
|
}}
|
|
shouldOpenOnLongPress={false}
|
|
>
|
|
<Button
|
|
title={t('devices.add_device')}
|
|
icon="add-circle-outline"
|
|
/>
|
|
</MenuView>
|
|
)
|
|
) : (
|
|
<View
|
|
style={{
|
|
backgroundColor: colors.surface,
|
|
borderRadius: 14,
|
|
padding: 16,
|
|
gap: 12,
|
|
borderWidth: 1,
|
|
borderColor: colors.border,
|
|
}}
|
|
>
|
|
<View style={{ flexDirection: 'row', alignItems: 'center', gap: 10 }}>
|
|
<Ionicons name="shield-checkmark-outline" size={22} color={colors.brandOrange} />
|
|
<Text
|
|
style={{ fontSize: 15, color: colors.text, fontFamily: 'Nunito_700Bold', flex: 1 }}
|
|
>
|
|
{t('devices.subtitle_legend')}
|
|
</Text>
|
|
</View>
|
|
<Button title={t('devices.upgrade_cta')} />
|
|
</View>
|
|
)}
|
|
|
|
<Text
|
|
style={{
|
|
fontSize: 11,
|
|
color: colors.textMuted,
|
|
fontFamily: 'Nunito_400Regular',
|
|
lineHeight: 16,
|
|
marginHorizontal: 4,
|
|
}}
|
|
>
|
|
{t('settings.devices_hint')}
|
|
</Text>
|
|
</ScrollView>
|
|
|
|
<AddMacSheet
|
|
visible={addMacVisible}
|
|
onClose={() => {
|
|
setAddMacVisible(false);
|
|
loadProtected();
|
|
}}
|
|
/>
|
|
|
|
<AddWindowsSheet
|
|
visible={addWindowsVisible}
|
|
onClose={() => {
|
|
setAddWindowsVisible(false);
|
|
loadProtected();
|
|
}}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|