remove unnecessary classes

This commit is contained in:
Jorrin
2024-01-29 10:49:32 +01:00
parent a7608b878d
commit cf17593b57
5 changed files with 7 additions and 6 deletions

View File

@@ -4,7 +4,7 @@ import { Text } from '@/components/ui/Text';
export default function HomeScreen() {
return (
<ScreenLayout title="Home" subtitle="This is where all magic happens">
<Text className="text-white">Movies will be listed here</Text>
<Text>Movies will be listed here</Text>
</ScreenLayout>
);
}

View File

@@ -3,7 +3,8 @@ import { useFocusEffect } from 'expo-router';
import { useCallback, useRef, useState } from 'react';
import { View } from 'react-native';
import { TextInput } from 'react-native-gesture-handler';
import Colors from '../../constants/Colors';
import Colors from '@/constants/Colors';
export default function Searchbar() {
const [keyword, setKeyword] = useState('');

View File

@@ -12,7 +12,7 @@ export default function SearchScreen() {
<ScreenLayout
title={
<View className="flex-row items-center">
<Text className="text-2xl font-bold text-white">Search</Text>
<Text className="text-2xl font-bold">Search</Text>
</View>
}
subtitle="Looking for something?"