freshyo/apps/user-ui/app/(drawer)/(tabs)/home/search-results/_layout.tsx
2026-01-24 00:13:15 +05:30

20 lines
No EOL
458 B
TypeScript

import FloatingCartBar from '@/components/floating-cart-bar';
import { tw } from 'common-ui';
import { Stack } from 'expo-router';
import { View } from 'react-native';
export default function SearchResultsLayout() {
return (
<>
<Stack
screenOptions={{
headerShown: true,
title: "Search Results",
}}
/>
<View style={tw`absolute bottom-2 left-4 right-4`}>
<FloatingCartBar />
</View>
</>
);
}