Skip to content

Commit 0414d8b

Browse files
committed
feat: add examples for NativeWind functionality
1 parent cad34da commit 0414d8b

File tree

6 files changed

+95
-3
lines changed

6 files changed

+95
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import { Text } from 'react-native';
2+
3+
const variantStyles = {
4+
default: 'rounded',
5+
primary: 'bg-blue-500 text-white',
6+
secondary: 'bg-white-500 text-black',
7+
};
8+
9+
type Props = {
10+
variant: keyof typeof variantStyles;
11+
className?: string;
12+
} & React.ComponentProps<typeof Text>;
13+
14+
export default function ComponentWithVariants({
15+
variant,
16+
className,
17+
...props
18+
}: Props) {
19+
return (
20+
<Text
21+
className={`
22+
${variantStyles.default}
23+
${variantStyles[variant]}
24+
${className}
25+
`}
26+
{...props}
27+
/>
28+
);
29+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { Text } from 'react-native';
2+
3+
export default function CustomComponent({ className }: { className: string }) {
4+
const defaultStyles = 'p-2 text-black dark:text-white';
5+
return (
6+
<Text className={`${defaultStyles} ${className}`}>
7+
I am a custom component
8+
</Text>
9+
);
10+
}
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import * as React from 'react';
2+
import { TextInput, type TextInputProps } from 'react-native';
3+
4+
const cn = (...args: (string | boolean | undefined)[]) =>
5+
args.filter(Boolean).join(' ');
6+
7+
const Input = React.forwardRef<
8+
React.ElementRef<typeof TextInput>,
9+
TextInputProps
10+
>(({ className, placeholderClassName, ...props }, ref) => {
11+
return (
12+
<TextInput
13+
ref={ref}
14+
className={cn(
15+
'web:flex h-10 native:h-12 web:w-full rounded-md border border-input bg-background px-3 web:py-2 text-base lg:text-sm native:text-lg native:leading-[1.25] text-foreground placeholder:text-muted-foreground web:ring-offset-background file:border-0 file:bg-transparent file:font-medium web:focus-visible:outline-none web:focus-visible:ring-2 web:focus-visible:ring-ring web:focus-visible:ring-offset-2',
16+
props.editable === false && 'opacity-50 web:cursor-not-allowed',
17+
className
18+
)}
19+
placeholderClassName={cn('text-muted-foreground', placeholderClassName)}
20+
{...props}
21+
/>
22+
);
23+
});
24+
25+
Input.displayName = 'Input';
26+
27+
export { Input };
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
11
import { StyleSheet, Text, View } from 'react-native';
2+
import ComponentWithVariants from './ComponentWithVariants.tsx';
3+
import CustomComponent from './CustomComponent.tsx';
4+
import { Input } from './Input.tsx';
25

36
export function NativeWindView() {
47
return (
5-
<View className="bg-blue-100 p-5" style={styles.container}>
6-
<Text className="custom-style-test">Colored through CSS!</Text>
8+
<View className="gap-4 p-2">
9+
<View
10+
className="bg-blue-100 p-5 rounded-full sm:bg-red-500"
11+
style={styles.container}
12+
>
13+
<Text className="custom-style-test">Colored through CSS!</Text>
14+
</View>
15+
<CustomComponent className="bg-green-600" />
16+
<ComponentWithVariants variant="primary" className="bg-yellow-500" />
17+
<Input />
718
</View>
819
);
920
}
@@ -12,6 +23,5 @@ const styles = StyleSheet.create({
1223
container: {
1324
flex: 1,
1425
alignItems: 'center',
15-
marginVertical: 16,
1626
},
1727
});
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# NativeWind + Re.Pack Demo
2+
3+
> [!NOTE]
4+
> Do not use `verifyInstallation()`
5+
6+
This component demonstrates compatibility with different NativeWind features:
7+
8+
* general styling with className and Tailwind classes
9+
* custom components styled with className
10+
* components using the variants pattern
11+
* TODO: themes https://www.nativewind.dev/guides/themes
12+
* using component libraries (NativeWindUI)
13+
* responsive design
14+
* dark mode
15+
* functions & directives

apps/tester-app/tailwind.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ module.exports = {
33
content: ['./src/**/*.{js,jsx,ts,tsx}'],
44
presets: [require('nativewind/preset')],
55
theme: { extend: {} },
6+
darkMode: 'class',
67
plugins: [],
78
};

0 commit comments

Comments
 (0)