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} />
|
||||
);
|
||||
}
|
||||
@@ -61,6 +61,8 @@ import DummyLandscapeImage from "./_ShareComponent/DummyLandscapeImage";
|
||||
import GridComponentView from "./_ShareComponent/GridSectionView";
|
||||
// Progress
|
||||
import ProgressCustom from "./Progress/ProgressCustom";
|
||||
// Loader
|
||||
import LoaderCustom from "./Loader/LoaderCustom";
|
||||
|
||||
export {
|
||||
// ActionIcon
|
||||
@@ -128,4 +130,6 @@ export {
|
||||
TextInputCustom,
|
||||
// ViewWrapper
|
||||
ViewWrapper,
|
||||
// Loader
|
||||
LoaderCustom,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user