Add: - app/(application)/(user)/profile/[id]/blocked-list.tsx app/(application)/(user)/profile/[id]/detail-blocked.tsx components/_ShareComponent/ListEmptyComponent.tsx components/_ShareComponent/ListLoaderFooterComponent.tsx components/_ShareComponent/ListSkeletonComponent.tsx hooks/use-paginated-api.ts service/api-client/api-blocked.ts Fix: modified: app/(application)/(user)/profile/_layout.tsx modified: components/_ShareComponent/NewWrapper.tsx modified: components/index.ts modified: screens/Profile/ListPage.tsx modified: styles/global-styles.ts ### No Issue
12 lines
275 B
TypeScript
12 lines
275 B
TypeScript
import { View } from "react-native";
|
|
import LoaderCustom from "../Loader/LoaderCustom";
|
|
|
|
const ListLoaderFooterComponent = () =>(
|
|
<View style={{ paddingVertical: 16, alignItems: "center" }}>
|
|
<LoaderCustom />
|
|
</View>
|
|
)
|
|
|
|
|
|
export default ListLoaderFooterComponent;
|