mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 09:03:25 +00:00
49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
import { Linking } from "react-native";
|
|
import * as Haptics from "expo-haptics";
|
|
import { FontAwesome6, MaterialIcons } from "@expo/vector-icons";
|
|
import { Circle, View } from "tamagui";
|
|
|
|
import { DISCORD_LINK, GITHUB_LINK } from "~/constants/core";
|
|
import { BrandPill } from "../BrandPill";
|
|
|
|
export function Header() {
|
|
return (
|
|
<View alignItems="center" gap="$3" flexDirection="row">
|
|
<BrandPill />
|
|
|
|
<Circle
|
|
backgroundColor="$pillBackground"
|
|
size="$3.5"
|
|
pressStyle={{
|
|
opacity: 1,
|
|
scale: 1.05,
|
|
}}
|
|
onPress={async () => {
|
|
await Linking.openURL(DISCORD_LINK);
|
|
}}
|
|
onLongPress={() =>
|
|
Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Heavy)
|
|
}
|
|
>
|
|
<MaterialIcons name="discord" size={28} color="white" />
|
|
</Circle>
|
|
<Circle
|
|
backgroundColor="$pillBackground"
|
|
size="$3.5"
|
|
pressStyle={{
|
|
opacity: 1,
|
|
scale: 1.05,
|
|
}}
|
|
onPress={async () => {
|
|
await Linking.openURL(GITHUB_LINK);
|
|
}}
|
|
onLongPress={() =>
|
|
Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Heavy)
|
|
}
|
|
>
|
|
<FontAwesome6 name="github" size={28} color="white" />
|
|
</Circle>
|
|
</View>
|
|
);
|
|
}
|