upload 04/08

This commit is contained in:
2025-08-04 10:17:58 +07:00
parent cc29aaabb4
commit 67939d2f54
24 changed files with 1917 additions and 655 deletions

10
App.tsx
View File

@@ -1,9 +1,17 @@
import React from "react";
import React, { useEffect } from "react";
import { NavigationContainer } from "@react-navigation/native";
import { Platform } from "react-native";
import { SafeAreaProvider } from "react-native-safe-area-context";
import AppNavigator from "./src/navigation/AppNavigator";
export default function App() {
useEffect(() => {
if (Platform.OS === "web") {
// Fix scroll bị chặn trên web
document.body.style.overflow = "auto";
document.documentElement.style.overflow = "auto";
}
}, []);
return (
<SafeAreaProvider>
<NavigationContainer>