This commit is contained in:
Fredrik Burmester
2024-10-05 12:22:35 +02:00
parent 200ccc6070
commit 2c14a18e53
5 changed files with 3 additions and 27 deletions

View File

@@ -37,8 +37,6 @@ const Layout = () => {
<Tab.Screen name="guide" />
<Tab.Screen name="channels" />
<Tab.Screen name="recordings" />
<Tab.Screen name="schedule" />
<Tab.Screen name="series" />
</Tab>
);
};

View File

@@ -15,7 +15,7 @@ import React, { useState } from "react";
import { Dimensions, ScrollView, View } from "react-native";
import { useSafeAreaInsets } from "react-native-safe-area-context";
const HOUR_HEIGHT = 30
const HOUR_HEIGHT = 30;
export default function page() {
const [api] = useAtom(apiAtom);
@@ -102,7 +102,7 @@ export default function page() {
}}
></View>
{channels?.Items?.map((c, i) => (
<View className="h-16 w-16 mr-4 rounded-lg overflow-hidden">
<View className="h-16 w-16 mr-4 rounded-lg overflow-hidden" key={i}>
<ItemImage
style={{
width: "100%",

View File

@@ -1,11 +0,0 @@
import { Text } from "@/components/common/Text";
import React from "react";
import { View } from "react-native";
export default function page() {
return (
<View>
<Text>Not implemented</Text>
</View>
);
}

View File

@@ -1,11 +0,0 @@
import { Text } from "@/components/common/Text";
import React from "react";
import { View } from "react-native";
export default function page() {
return (
<View>
<Text>Not implemented</Text>
</View>
);
}

View File

@@ -50,7 +50,7 @@ export const LiveTVGuideRow = ({
return (
<View key={channel.ChannelNumber} className="flex flex-row h-16">
{programsWithPositions?.map((p) => (
<TouchableItemRouter item={p}>
<TouchableItemRouter item={p} key={p.Id}>
<View
style={{
width: p.width,