Files
hipmi-mobile/screens/Home/imageSection.tsx
Bagasbanuna02 3849e03a1a feature home
deskripsi:
- tampilan home
2025-06-26 17:43:47 +08:00

27 lines
561 B
TypeScript

import { Image } from "expo-image";
import { View } from "react-native";
export default function Home_ImageSection() {
return (
<View
style={{
alignItems: "center",
justifyContent: "center",
backgroundColor: "#fff",
borderRadius: 10,
}}
>
<Image
source={require("@/assets/images/constants/home-hipmi.png")}
contentFit="cover"
transition={1000}
style={{
width: "100%",
height: 120,
borderRadius: 10,
}}
/>
</View>
);
}