ほぼすべての駅名標機能で内部ブラウザを利用できるように変更
This commit is contained in:
@@ -1,7 +1,14 @@
|
||||
import { TouchableOpacity, Text } from "react-native";
|
||||
|
||||
export const TicketBox = (props) => {
|
||||
const { icon, backgroundColor, flex, onPressButton, children } = props;
|
||||
const {
|
||||
icon,
|
||||
backgroundColor,
|
||||
flex,
|
||||
onPressButton,
|
||||
children,
|
||||
onLongPressButton,
|
||||
} = props;
|
||||
return (
|
||||
<TouchableOpacity
|
||||
style={{
|
||||
@@ -14,6 +21,7 @@ export const TicketBox = (props) => {
|
||||
alignItems: "center",
|
||||
}}
|
||||
onPress={onPressButton}
|
||||
onLongPress={onLongPressButton}
|
||||
>
|
||||
<Text style={{ color: "white", fontWeight: "bold", fontSize: 18 }}>
|
||||
{children}
|
||||
|
||||
Reference in New Issue
Block a user