- new comp : Radio - fix comp : Text area > placeholder diatas - fix page : report forum sudah pakai radio # No Issue
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import { ViewWrapper, StackCustom, ButtonCustom, Spacing } from "@/components";
|
|
import { MainColor, AccentColor } from "@/constants/color-palet";
|
|
import Forum_ReportListSection from "@/screens/Forum/ReportListSection";
|
|
import { router } from "expo-router";
|
|
|
|
export default function ForumReportPosting() {
|
|
return (
|
|
<>
|
|
<ViewWrapper>
|
|
<StackCustom>
|
|
<Forum_ReportListSection />
|
|
<ButtonCustom
|
|
backgroundColor={MainColor.red}
|
|
textColor={MainColor.white}
|
|
onPress={() => {
|
|
console.log("Report");
|
|
router.back();
|
|
}}
|
|
>
|
|
Report
|
|
</ButtonCustom>
|
|
<ButtonCustom
|
|
backgroundColor={AccentColor.blue}
|
|
textColor={MainColor.white}
|
|
onPress={() => {
|
|
console.log("Lainnya");
|
|
router.replace("/forum/[id]/other-report-posting");
|
|
}}
|
|
>
|
|
Lainnya
|
|
</ButtonCustom>
|
|
<Spacing />
|
|
</StackCustom>
|
|
</ViewWrapper>
|
|
</>
|
|
);
|
|
} |