NeoScan_Physician/app/modules/Profile/screens/PreferencesScreen.tsx
2025-07-21 18:47:22 +05:30

56 lines
1.4 KiB
TypeScript

/*
* File: PreferencesScreen.tsx
* Description: Screen for user preferences
* Design & Developed by Tech4Biz Solutions
* Copyright (c) Spurrin Innovations. All rights reserved.
*/
import React from 'react';
import { View, Text, StyleSheet } from 'react-native';
import { Card } from '../../../../shared/src/components/Card';
import { Colors, Spacing, Typography } from '../../../../shared/src/theme';
/**
* PreferencesScreen - shows stub content for preferences form
*/
const PreferencesScreen: React.FC = () => {
return (
<View style={styles.container}>
<Card>
<Text style={styles.title}>Preferences</Text>
<Text style={styles.stub}>[Preferences Form Here]</Text>
</Card>
</View>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: Colors.background,
justifyContent: 'center',
padding: Spacing.lg,
},
title: {
fontFamily: Typography.fontFamily.bold,
fontSize: Typography.fontSize.lg,
color: Colors.primary,
marginBottom: Spacing.md,
textAlign: 'center',
},
stub: {
fontFamily: Typography.fontFamily.regular,
fontSize: Typography.fontSize.md,
color: Colors.textSecondary,
textAlign: 'center',
marginTop: Spacing.lg,
},
});
export default PreferencesScreen;
/*
* End of File: PreferencesScreen.tsx
* Design & Developed by Tech4Biz Solutions
* Copyright (c) Spurrin Innovations. All rights reserved.
*/