创建dev分钟更改配置
This commit is contained in:
2
.vscode/settings.json
vendored
2
.vscode/settings.json
vendored
@@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -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>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user