DEV Community

niuniu
niuniu

Posted on

Quick Tip: React Native Components

Quick Tip

React Native basic components:

import { View, Text, Button, StyleSheet } from 'react-native';

const App = () => {
  return (
    <View style={styles.container}>
      <Text style={styles.title}>Hello, React Native!</Text>
      <Button title="Click Me" onPress={() => alert('Pressed!')} />
    </View>
  );
};

const styles = StyleSheet.create({
  container: { flex: 1, justifyContent: 'center', alignItems: 'center' },
  title: { fontSize: 24, marginBottom: 20 },
});
Enter fullscreen mode Exit fullscreen mode

Powered by MonkeyCode: https://monkeycode-ai.net/

reactnative #mobile #tips

Top comments (0)