- Upgrade Expo SDK 52→53 (React 18→19, RN 0.76→0.79) - Remove deprecated packages (native-base, react-native-elements) - Migrate to @rneui/themed 5.0.0 + modular vector icons - Fix breaking changes: defaultProps, BackHandler, notifications, key props - Add Babel plugin for font scaling (replaces Text.defaultProps) - Configure expo-font for native font preloading - Add complete dark mode theme system (lib/theme/) - AppThemeProvider + useThemeColors hook - Light/dark/fixed color token definitions - Migrate ~60 files across all screens to use theme colors - Set userInterfaceStyle to "automatic" for system dark mode
35 lines
1.0 KiB
TypeScript
35 lines
1.0 KiB
TypeScript
import React, { FC } from "react";
|
|
import { Linking } from "react-native";
|
|
import { FontAwesome } from "@expo/vector-icons";
|
|
import { TicketBox } from "@/components/atom/TicketBox";
|
|
import { useThemeColors } from "@/lib/theme";
|
|
type Props = {
|
|
info: string;
|
|
address: string;
|
|
usePDFView: string;
|
|
navigate: (screen: string, params?: object) => void;
|
|
onExit: () => void;
|
|
goTo: string;
|
|
useShow: string;
|
|
};
|
|
export const StationTimeTableButton: FC<Props> = (props) => {
|
|
const { info, address, usePDFView, navigate, onExit, goTo, useShow } = props;
|
|
const { fixed } = useThemeColors();
|
|
return (
|
|
<TicketBox
|
|
backgroundColor={"#8F5902"}
|
|
icon={<FontAwesome name="table" color={fixed.textOnPrimary} size={50} />}
|
|
flex={1}
|
|
onPressButton={() => {
|
|
usePDFView == "true"
|
|
? Linking.openURL(address)
|
|
: navigate("howto", { info, goTo, useShow });
|
|
onExit();
|
|
}}
|
|
onLongPressButton={() => Linking.openURL(address)}
|
|
>
|
|
時刻表
|
|
</TicketBox>
|
|
);
|
|
};
|