Files
hipmi-mobile/app/(application)/event/(tabs)/index.tsx
Bagasbanuna02 d58304a146 feature event
deskripsi:
- resourcing component event
2025-06-30 16:41:17 +08:00

26 lines
777 B
TypeScript

import ViewWrapper from "@/components/_ShareComponent/ViewWrapper";
import { AccentColor, MainColor } from "@/constants/color-palet";
import { Styles } from "@/styles/global-styles";
import { router } from "expo-router";
import { Text, TouchableHighlight, View } from "react-native";
export default function Event() {
return (
<ViewWrapper>
<TouchableHighlight onPress={() => router.push("/event/detail/1")}>
<View
style={{
padding: 20,
backgroundColor: MainColor.darkblue,
borderRadius: 10,
borderColor: AccentColor.blue,
borderWidth: 1,
}}
>
<Text style={Styles.textLabel}>Event</Text>
</View>
</TouchableHighlight>
</ViewWrapper>
);
}