feat: 添加对数据库初始化的调用,优化设置存储逻辑

This commit is contained in:
2025-08-29 14:47:20 +08:00
parent 244f702542
commit 3ff5d7fdc3
4 changed files with 125 additions and 8 deletions

View File

@@ -2,7 +2,6 @@ import { defaultConfig } from '@tamagui/config/v4'
import { createTamagui } from 'tamagui'
import { bodyFont, headingFont } from './fonts'
import { animations } from './animations'
import { basicThemes } from 'apps/expo/themes/basic'
export const config = createTamagui({
...defaultConfig,
animations,
@@ -10,9 +9,8 @@ export const config = createTamagui({
body: bodyFont,
heading: headingFont,
},
settings:{
settings: {
...defaultConfig.settings,
onlyAllowShorthands: false
onlyAllowShorthands: false,
},
basicThemes
})