2025-02-15 14:03:42 -05:00
|
|
|
// app/(tabs)/history.tsx
|
2025-02-09 20:38:38 -05:00
|
|
|
import { View } from 'react-native';
|
|
|
|
import { Text } from '@/components/ui/text';
|
2025-02-15 14:03:42 -05:00
|
|
|
import { TabScreen } from '@/components/layout/TabScreen';
|
|
|
|
import Header from '@/components/Header';
|
|
|
|
import { Button } from '@/components/ui/button';
|
|
|
|
import { Filter } from 'lucide-react-native';
|
2025-02-09 20:38:38 -05:00
|
|
|
|
2025-02-15 14:03:42 -05:00
|
|
|
export default function HistoryScreen() {
|
2025-02-09 20:38:38 -05:00
|
|
|
return (
|
2025-02-15 14:03:42 -05:00
|
|
|
<TabScreen>
|
|
|
|
<Header
|
|
|
|
title="History"
|
|
|
|
rightElement={
|
|
|
|
<Button
|
|
|
|
variant="ghost"
|
|
|
|
size="icon"
|
|
|
|
onPress={() => console.log('Open filters')}
|
|
|
|
>
|
|
|
|
<Filter className="text-foreground" />
|
|
|
|
</Button>
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
<View className="flex-1 items-center justify-center">
|
|
|
|
<Text>History Screen</Text>
|
|
|
|
</View>
|
|
|
|
</TabScreen>
|
2025-02-09 20:38:38 -05:00
|
|
|
);
|
|
|
|
}
|