This commit is contained in:
Fredrik Burmester
2025-09-30 11:58:59 +02:00
parent 47c52e0739
commit 7a11f4a54b
17 changed files with 580 additions and 306 deletions

View File

@@ -2,7 +2,7 @@ import { useMemo, useState } from "react";
import { useTranslation } from "react-i18next";
import { Platform, TouchableOpacity, View } from "react-native";
import { Text } from "./common/Text";
import { type OptionGroup, PlatformOptionsMenu } from "./PlatformOptionsMenu";
import { type OptionGroup, PlatformDropdown } from "./PlatformDropdown";
export type Bitrate = {
key: string;
@@ -125,7 +125,7 @@ export const BitrateSelector: React.FC<Props> = ({
maxWidth: 200,
}}
>
<PlatformOptionsMenu
<PlatformDropdown
groups={optionGroups}
trigger={trigger}
title={t("item_card.quality")}