/* * 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 ( Dashboard Detail screen ); }; 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. */