API
User search: Fix: - api get all user - searching by username Portofolio: Fix: - dot button hanya muncul jika user yang memiliki portofolio tersebut yang melihat Profile: Fix: - dot button muncul hanya untuk user yang memiliki akunnya ### No Issue
This commit is contained in:
8
components/Loader/LoaderCustom.tsx
Normal file
8
components/Loader/LoaderCustom.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import { MainColor } from "@/constants/color-palet";
|
||||
import { ActivityIndicator } from "react-native";
|
||||
|
||||
export default function LoaderCustom({ size }: { size?: "small" | "large" }) {
|
||||
return (
|
||||
<ActivityIndicator size={size ? size : "small"} color={MainColor.yellow} />
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user