创建dev分钟更改配置

This commit is contained in:
Vegas
2025-11-11 10:18:34 +07:00
parent 33abbe21aa
commit 4b416d7903
3 changed files with 5 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
{ {
"editor.codeActionsOnSave": { "editor.codeActionsOnSave": {
"source.fixAll": "explicit", "source.fixAll": "explicit",
"source.organizeImports": "explicit", // "source.organizeImports": "explicit",//这个会在保存时自动删除没有使用的导入依赖
"source.sortMembers": "explicit" "source.sortMembers": "explicit"
} }
} }

View File

@@ -1,8 +1,9 @@
import { ThemedView } from "@/components/themed-view"; import { ThemedView } from "@/components/themed-view";
import { Text } from "react-native";
export default function ActivityScreen() { export default function ActivityScreen() {
return ( return (
<ThemedView>11</ThemedView> <ThemedView><Text></Text></ThemedView>
) )
} }

View File

@@ -1,8 +1,8 @@
import { ThemedView } from "@/components/themed-view"; import { ThemedView } from "@/components/themed-view";
import { Text } from "react-native";
export default function RechargeScreen() { export default function RechargeScreen() {
return ( return (
<ThemedView></ThemedView> <ThemedView><Text></Text></ThemedView>
) )
} }