Changes: - Add wellnuoSheme/ folder with project documentation - Rename patients -> beneficiaries (proper WellNuo terminology) - Add BeneficiaryContext for state management - Update API service with WellNuo endpoints - Add dashboard screen for beneficiary overview - Update navigation and layout Scheme files include: - API documentation with credentials - Project description - System analysis - UX flow - Legal documents (privacy, terms, support) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
17 lines
392 B
TypeScript
17 lines
392 B
TypeScript
import { Stack } from 'expo-router';
|
|
import { AppColors } from '@/constants/theme';
|
|
|
|
export default function BeneficiariesLayout() {
|
|
return (
|
|
<Stack
|
|
screenOptions={{
|
|
headerShown: false,
|
|
contentStyle: { backgroundColor: AppColors.background },
|
|
}}
|
|
>
|
|
<Stack.Screen name="[id]/index" />
|
|
<Stack.Screen name="[id]/dashboard" />
|
|
</Stack>
|
|
);
|
|
}
|