App.js
 1  // ⚠️ Must be first import — patches window.storage on native
 2  import "./storage-adapter";
 3  
 4  import React from "react";
 5  import { SafeAreaView, ScrollView, StatusBar, StyleSheet, Platform } from "react-native";
 6  import VIILegio from "./VIILegio";
 7  
 8  export default function App() {
 9    return (
10      <>
11        <StatusBar barStyle="light-content" backgroundColor="#07080f" />
12        <SafeAreaView style={styles.safe}>
13          <VIILegio />
14        </SafeAreaView>
15      </>
16    );
17  }
18  
19  const styles = StyleSheet.create({
20    safe: {
21      flex: 1,
22      backgroundColor: "#07080f",
23    },
24  });