This commit is contained in:
Jorrin
2024-01-29 10:34:51 +01:00
parent 5baf4d6b86
commit a7608b878d
18 changed files with 35 additions and 64 deletions

View File

@@ -1,7 +1,7 @@
import { Tabs } from 'expo-router';
import TabBarIcon from '../components/TabBarIcon';
import Colors from '../constants/Colors';
import TabBarIcon from '@/components/TabBarIcon';
import Colors from '@/constants/Colors';
export default function TabLayout() {
return (

View File

@@ -1,6 +1,5 @@
import { Text } from '../components/ui/Text';
import ScreenLayout from '../components/layout/ScreenLayout';
import ScreenLayout from '@/components/layout/ScreenLayout';
import { Text } from '@/components/ui/Text';
export default function AboutScreen() {
return (

View File

@@ -1,5 +1,5 @@
import { Text } from '../components/ui/Text';
import ScreenLayout from '../components/layout/ScreenLayout';
import ScreenLayout from '@/components/layout/ScreenLayout';
import { Text } from '@/components/ui/Text';
export default function AccountScreen() {
return (

View File

@@ -1,5 +1,5 @@
import ScreenLayout from '../components/layout/ScreenLayout';
import { Text } from '../components/ui/Text';
import ScreenLayout from '@/components/layout/ScreenLayout';
import { Text } from '@/components/ui/Text';
export default function HomeScreen() {
return (

View File

@@ -1,9 +1,10 @@
import { ScrollView, View } from 'react-native';
import { Text } from '../../components/ui/Text';
import Item from '@/components/item/item';
import ScreenLayout from '@/components/layout/ScreenLayout';
import { Text } from '@/components/ui/Text';
import Searchbar from './Searchbar';
import ScreenLayout from '../../components/layout/ScreenLayout';
import Item from '../../components/item/item';
export default function SearchScreen() {
return (

View File

@@ -1,6 +1,5 @@
import { Text } from '../components/ui/Text';
import ScreenLayout from '../components/layout/ScreenLayout';
import ScreenLayout from '@/components/layout/ScreenLayout';
import { Text } from '@/components/ui/Text';
export default function SettingsScreen() {
return (