Apple sign in is mostly working. Did some other stuff too

This commit is contained in:
2025-03-06 12:31:32 -06:00
parent 708c0553f5
commit 84cae666bf
10 changed files with 950 additions and 184 deletions

6
constants/Types.ts Normal file
View File

@ -0,0 +1,6 @@
export type NotificationMessage = {
sound?: string;
title: string;
body: string;
data?: any;
};