Skip to content

npx expo install react-native-screens react-native-safe-area-context react-native-gesture-handler react-native-reanimated #119

@6rjn9dd2cs-hue

Description

@6rjn9dd2cs-hue

import React from "react";
import { NavigationContainer } from "@react-navigation/native";
import { createNativeStackNavigator } from "@react-navigation/native-stack";

import { View, Text } from "react-native";

const Stack = createNativeStackNavigator();

function HomeScreen() {
return (
<View
style={{
flex: 1,
backgroundColor: "#050805",
justifyContent: "center",
alignItems: "center",
}}
>
<Text
style={{
color: "#58ff7a",
fontSize: 42,
fontWeight: "900",
}}
>
G Swipe

  <Text style={{ color: "white", marginTop: 10 }}>
    Move money. Build wealth.
  </Text>
</View>

);
}

export default function App() {
return (

<Stack.Navigator screenOptions={{ headerShown: false }}>
<Stack.Screen name="Home" component={HomeScreen} />
</Stack.Navigator>

);
}

npx expo start

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions