44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
/*
|
|
* File: DashboardScreen.tsx
|
|
* Description: Sample dashboard screen using Clinical Blue Interface and shared components
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|
|
|
|
import React, { useState } from 'react';
|
|
import { View, Text, StyleSheet, ScrollView } from 'react-native';
|
|
import { Colors, Spacing, Typography } from '../../../../shared/src/theme';
|
|
|
|
/**
|
|
* DashboardScreen demonstrates usage of all shared, themed components.
|
|
* This is a reference implementation for other modules.
|
|
*/
|
|
const DashBoardDetail: React.FC = () => {
|
|
|
|
|
|
return (
|
|
<ScrollView style={styles.container} contentContainerStyle={styles.content}>
|
|
<Text style={{color:'#FFFFFF'}} >Dashboard Detail screen</Text>
|
|
|
|
</ScrollView>
|
|
);
|
|
};
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: Colors.background,
|
|
},
|
|
content: {
|
|
padding: Spacing.lg,
|
|
flex:1
|
|
}
|
|
});
|
|
|
|
export default DashBoardDetail;
|
|
|
|
/*
|
|
* End of File: DashboardScreen.tsx
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|