account-deletion-flow
Installation
SKILL.md
Account Deletion Flow
REQUIRED in-app since 2022 if your app has accounts (5.1.1(v)). Settings → Account → Delete Account.
SwiftUI-style React Native flow
// app/(tabs)/settings.tsx
function DeleteAccountRow() {
const router = useRouter();
return (
<Pressable onPress={() => router.push('/delete-account')}>
<Text style={{ color: 'red' }}>Delete Account</Text>
</Pressable>
);
}
// app/delete-account.tsx
function DeleteAccountScreen() {
const [confirming, setConfirming] = useState(false);