fix: rides layout and accessibility

This commit is contained in:
Sanidhya Kumar Verma
2024-09-04 06:52:11 +00:00
committed by GitHub
parent 20580c58df
commit e9a4e892d9
4 changed files with 13 additions and 4 deletions
+2 -2
View File
@@ -13,10 +13,10 @@ const TabIcon = ({
focused: boolean;
}) => (
<View
className={`flex flex-row justify-center items-center rounded-full ${focused ? "bg-general-300" : ""}`}
className={`flex flex-row justify-center items-center rounded-full ${focused && "bg-general-300"}`}
>
<View
className={`rounded-full w-12 h-12 items-center justify-center ${focused ? "bg-general-400" : ""}`}
className={`rounded-full w-12 h-12 items-center justify-center ${focused && "bg-general-400"}`}
>
<Image
source={source}