您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

.gitignore 417B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files
  2. # dependencies
  3. node_modules/
  4. # Expo
  5. .expo/
  6. dist/
  7. web-build/
  8. expo-env.d.ts
  9. /ios
  10. /android
  11. # Native
  12. *.orig.*
  13. *.jks
  14. *.p8
  15. *.p12
  16. *.key
  17. *.mobileprovision
  18. # Metro
  19. .metro-health-check*
  20. # debug
  21. npm-debug.*
  22. yarn-debug.*
  23. yarn-error.*
  24. # macOS
  25. .DS_Store
  26. *.pem
  27. # local env files
  28. .env*.local
  29. # typescript
  30. *.tsbuildinfo
  31. app-example