AK
Aditya Kalani
React Native App with Tailwind CSS Components
Import React from 'react'; import { View, Text, StyleSheet } from 'react native'; const App = () => { return ( <View style={styles.container}> <Text style={styles.text}>Let's Go</Text> </View> ); }; const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'flex start', // Align items to the start (top) alignItems: 'flex end', // Align items to the end (right) padding: 50, // Optional: adds padding from the edges }, text: { fontSize: 28, // Font size of the text }, }); export default App; add appbar then slider then grid section then advertisment
Prompt
