Pb to install
See original GitHub issueimport React from 'react';
import {SafeAreaView, View, Text} from 'react-native';
import {useTailwind, TailwindProvider} from 'tailwind-rn';
import utilities from './tailwind.json';
const Main = () => {
const tailwind = useTailwind();
return (
<SafeAreaView style={tailwind('h-full')}>
<View style={tailwind('pt-12 items-center')}>
<View style={tailwind('bg-blue-200 px-3 py-1 rounded-full')}>
<Text style={tailwind('text-blue-800 font-semibold')}>
Hello Tailwind
</Text>
</View>
</View>
</SafeAreaView>
);
};
const App = () => (
<TailwindProvider utilities={utilities}>
<Main />
</TailwindProvider>
);
export default App;
after to install
npm install tailwind-rn
npx setup-tailwind-rn
I’v got this message
Unsupported Tailwind class: "h-full"
Issue Analytics
- State:
- Created 2 years ago
- Comments:5
Top Results From Across the Web
Basic pbinstall Information in PMUL - BeyondTrust
pbinstall can be run from a Privilege Management for Unix and Linux distribution CD or from an unpacked tar file. The pbinstall install...
Read more >Can't install PB assembly with bioconda, packages not found!
The latest pre-release, experts-only linux/mac binaries can be installed via bioconda. conda install pb-assembly.
Read more >PB 2019 Install Issue - Appeon Community
I downloaded the "offline installer" for PB + SnapDevelop (aka. Cloud Edition) . Installer downloads to subfolder within C:\ProgramDaata\Appeon.
Read more >How to Install module name pb? - python - Stack Overflow
When I am Running code but it is showing error message because it is showing no module name, how to install pb name...
Read more >US installation guideline - linea pb - La Marzocco USA
U.S. installation guideline linea pb. Dimensions ... suggested | † regulate as needed | ‡ This machine must be installed in accordance with...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I’m having the same issue did you get this working?
What do you have in your content array inside the tailwind.config.js?