mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-02-16 00:52:22 +00:00
Made text UI scaling follow OS level scailing to a limit to stop overlapping issues Signed-off-by: Lance Chant <13349722+lancechant@users.noreply.github.com>
31 lines
736 B
TypeScript
31 lines
736 B
TypeScript
import type React from "react";
|
|
import { Text, TouchableOpacity, View, type ViewProps } from "react-native";
|
|
|
|
interface SkipButtonProps extends ViewProps {
|
|
onPress: () => void;
|
|
showButton: boolean;
|
|
buttonText: string;
|
|
}
|
|
|
|
const SkipButton: React.FC<SkipButtonProps> = ({
|
|
onPress,
|
|
showButton,
|
|
buttonText,
|
|
...props
|
|
}) => {
|
|
return (
|
|
<View className={showButton ? "flex" : "hidden"} {...props}>
|
|
<TouchableOpacity
|
|
onPress={onPress}
|
|
className='bg-black/60 rounded-md px-3 py-3 border border-neutral-900'
|
|
>
|
|
<Text maxFontSizeMultiplier={1.2} className='text-white font-bold'>
|
|
{buttonText}
|
|
</Text>
|
|
</TouchableOpacity>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default SkipButton;
|