From cfb8a3160e0092990bafd05cb97006720400448a Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Wed, 24 Jul 2024 20:09:20 +0100 Subject: Priority notifications (#4798) * new settings screen * bring back the spinner * add experimental language * fix typo, change leading * integrate priority notifications API * update package * use refetch instead of invalidateQueries * fix read-after-write issue by polling for update * add spinner for initial load * rm onmutate, it's overcomplicated * set error state eagerly * Change language in description Co-authored-by: Hailey * prettier * add `Toggle.Platform` * extract out mutation hook + error state * rm useless cache mutation * disambiguate isError and isPending * rm unused isError --------- Co-authored-by: Samuel Newman <10959775+mozzius@users.noreply.github.com> Co-authored-by: Hailey --- src/components/forms/Toggle.tsx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/components/forms/Toggle.tsx') diff --git a/src/components/forms/Toggle.tsx b/src/components/forms/Toggle.tsx index cbdbf1c60..391b1c8b7 100644 --- a/src/components/forms/Toggle.tsx +++ b/src/components/forms/Toggle.tsx @@ -2,6 +2,7 @@ import React from 'react' import {Pressable, View, ViewStyle} from 'react-native' import Animated, {LinearTransition} from 'react-native-reanimated' +import {isNative} from '#/platform/detection' import {HITSLOP_10} from 'lib/constants' import { atoms as a, @@ -459,3 +460,5 @@ export function Radio() { ) } + +export const Platform = isNative ? Switch : Checkbox -- cgit 1.4.1