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);
Installs
2
GitHub Stars
1
First Seen
Aug 5, 2026
account-deletion-flow — khadinakbarlabs/expo-mobile-app-builder