[FIX] Reviwed comments on the RP

This commit is contained in:
mathysPaul
2023-11-17 00:23:28 +01:00
parent cc65a3bd09
commit 36316b0333
21 changed files with 125 additions and 1657 deletions
+1 -2
View File
@@ -11,13 +11,12 @@ type GlassmorphismCCProps = {
const GlassmorphismCC = ({ children, style }: GlassmorphismCCProps) => {
const colorScheme = useColorScheme();
console.log(colorScheme);
return (
<BlurView
style={[{ borderRadius: 12 }, style]}
intensity={60}
tint={colorScheme === 'light' ? 'light' : 'dark'}
tint={colorScheme}
>
{children}
</BlurView>