6.0 update init

This commit is contained in:
harukin-expo-dev-env
2025-01-22 11:34:05 +00:00
parent a5efb13506
commit 294b95967f
65 changed files with 2633 additions and 5070 deletions

View File

@@ -6,13 +6,13 @@ export const initIcon = (name: name, type:type) => {
switch (type) {
case "Ionicons":
return ({ focused, color, size }) => (
<Ionicons name={name} size={32} color={focused ? "#0099CC" : "black"} />
<Ionicons name={name} size={30} color={focused ? "#0099CC" : "black"} />
);
case "AntDesign":
return ({ focused, color, size }) => (
<AntDesign
name={name}
size={32}
size={30}
color={focused ? "#0099CC" : "black"}
/>
);