Fix: - android/app/src/main/AndroidManifest.xml - app/(application)/(user)/job/(tabs)/_layout.tsx - app/(application)/(user)/job/[id]/index.tsx - app/(application)/(user)/notifications/index.tsx - app/(application)/(user)/profile/[id]/index.tsx - app/(application)/admin/job/[id]/[status]/index.tsx - app/(application)/admin/notification/index.tsx - app/+not-found.tsx - ios/HIPMIBadungConnect.xcodeproj/project.pbxproj - screens/Admin/Job/funUpdateStatus.ts - screens/Home/bottomFeatureSection.tsx ### No Issue
27 lines
721 B
TypeScript
27 lines
721 B
TypeScript
import { BackButton, StackCustom, TextCustom, ViewWrapper } from "@/components";
|
|
import { Stack } from "expo-router";
|
|
|
|
export default function NotFoundScreen() {
|
|
return (
|
|
<>
|
|
<Stack.Screen
|
|
options={{ headerShown: false, headerLeft: () => <BackButton /> }}
|
|
/>
|
|
<ViewWrapper>
|
|
<StackCustom
|
|
align="center"
|
|
gap={0}
|
|
style={{ justifyContent: "center", alignItems: "center", flex: 1 }}
|
|
>
|
|
<TextCustom size="large" bold style={{ fontSize: 100 }}>
|
|
404
|
|
</TextCustom>
|
|
<TextCustom size="large" bold>
|
|
Sorry, File Not Found
|
|
</TextCustom>
|
|
</StackCustom>
|
|
</ViewWrapper>
|
|
</>
|
|
);
|
|
}
|