- Expo
@expo/ui– UI nativaexpo-router– Navegação baseada em arquivos, com suporte webexpo-updates– Atualizações OTA configuradasexpo-build– Configuração de build
expo-dev-client– Cliente de desenvolvimento customizado
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CompileFlags: | |
| Add: | |
| # MSVC-compatible front-end flags for clang on Windows. | |
| - -fms-compatibility | |
| - -fms-extensions | |
| - -fdelayed-template-parsing | |
| # MSVC toolset headers (check C:\Program Files\Microsoft Visual Studio\2022\<Edition>\VC\Tools\MSVC for your version). | |
| - -isystem | |
| - 'C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.44.35207\include' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Zed settings | |
| // | |
| // For information on how to configure Zed, see the Zed | |
| // documentation: https://zed.dev/docs/configuring-zed | |
| // | |
| // To see all of Zed's default settings without changing your | |
| // custom settings, run `zed: open default settings` from the | |
| // command palette (cmd-shift-p / ctrl-shift-p) | |
| { | |
| "agent": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { | |
| FlatList, | |
| Text, | |
| View, | |
| type LayoutRectangle, | |
| type ListRenderItemInfo, | |
| } from 'react-native'; | |
| /** | |
| * Importing an arbitrary JSON file to test rendering. | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import ts from "typescript"; | |
| import fs from "node:fs"; | |
| import path from "node:path"; | |
| import { fileURLToPath } from "node:url"; | |
| const SKIP_THIRD_PARTY_MODULES = true; | |
| const __dirname = path.dirname(fileURLToPath(import.meta.url)); | |
| /** | |
| * Get the module path based on the base directory. |