Feature/callpage #18

Merged
mattdimegs merged 17 commits from feature/callpage into main 2025-04-19 16:48:15 +00:00
5 changed files with 6 additions and 6 deletions
Showing only changes of commit ed80abae81 - Show all commits

View file

@ -5,7 +5,7 @@ import { Platform, Linking, View, ScrollView, Text, TouchableOpacity } from 'rea
import { import {
PageHeader, PageHeader,
PageFooter, PageFooter,
} from './generalHelpers.jsx'; } from '../components/generalHelpers.jsx';
import { Ionicons } from '@expo/vector-icons'; import { Ionicons } from '@expo/vector-icons';
import ActionSheet from 'react-native-actions-sheet'; import ActionSheet from 'react-native-actions-sheet';

View file

@ -10,7 +10,7 @@ import { Phone } from "healthicons-react-native/dist/filled";
import { import {
PageHeader, PageHeader,
PageFooter, PageFooter,
} from './generalHelpers.jsx'; } from '../components/generalHelpers.jsx';
import ActionSheet from 'react-native-actions-sheet'; import ActionSheet from 'react-native-actions-sheet';
const DepartmentActionSheet = styled(ActionSheet)``; const DepartmentActionSheet = styled(ActionSheet)``;

View file

@ -20,7 +20,7 @@ import {
ExtraText, ExtraText,
TextLinkContent, TextLinkContent,
LoginTextInput LoginTextInput
} from './generalHelpers.jsx'; } from '../components/generalHelpers.jsx';
import { useWebSocketContext } from '../hooks/useWebSocketContext'; import { useWebSocketContext } from '../hooks/useWebSocketContext';
export default function Login() { export default function Login() {

View file

@ -19,7 +19,7 @@ import {
MessageBox, MessageBox,
LoginTextInput, LoginTextInput,
RegisterDropdownInput, RegisterDropdownInput,
} from './generalHelpers.jsx'; } from '../components/generalHelpers.jsx';
export default function Register() { export default function Register() {

View file

@ -1,8 +1,8 @@
import styled from 'styled-components'; import styled from 'styled-components';
import { View, Text, LayoutAnimation, Image, TextInput, TouchableOpacity, TouchableNativeFeedback, ScrollView } from 'react-native'; import { View, Text, LayoutAnimation, Image, TextInput, TouchableOpacity, TouchableNativeFeedback, ScrollView } from 'react-native';
import { Ionicons } from '@expo/vector-icons'; import { Ionicons } from '@expo/vector-icons';
import { Row } from '../components/Row'; import { Row } from './Row';
import { Container } from '../components/Container'; import { Container } from './Container';
export const StyledContainer = styled.View` export const StyledContainer = styled.View`
flex: 1; flex: 1;