- Implement pagination on investment screens (ScreenMyHolding, ScreenInvestor, ScreenRecapOfNews, ScreenListOfNews) - Implement pagination on donation screens (ScreenStatus) - Update API functions to support pagination with page parameter (apiInvestmentGetAll, apiInvestmentGetInvestorById, apiInvestmentGetNews, apiDonationGetByStatus) - Replace ViewWrapper with NewWrapper for better UI experience - Update app directory files to use new modular components from screens directory - Add pull-to-refresh and infinite scroll functionality - Improve performance by loading data incrementally - Apply NewWrapper to donation create and create-story screens Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
11 lines
318 B
TypeScript
11 lines
318 B
TypeScript
import Donation_ScreenStatus from "@/screens/Donation/ScreenStatus";
|
|
import { useLocalSearchParams } from "expo-router";
|
|
|
|
export default function DonationStatus() {
|
|
const { status } = useLocalSearchParams<{ status?: string }>();
|
|
|
|
return (
|
|
<Donation_ScreenStatus initialStatus={status || "publish"} />
|
|
);
|
|
}
|