Skip to content

Commit

Permalink
style: 스플래시 화면 빈 공간 없애기 위해 resizeMode 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
nnyouung committed Dec 2, 2024
1 parent f584a8f commit fc0c8c7
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ We follow Conventional Commits

Reference (참조)

- [A Simplified Convention for Naming Branches and Commits in Git](https://dev.to/varbsan/a-simplified-convention-for-naming-branches-and-commits-in-git-il4)
- [A Simplified Convention for Naming Branches and Commits in Git](https://dev.to/varbsan/a-simplified-convention-for-naming-branches-and-commits-in-git-il4)

- [Naming conventions for Git Branches — a Cheatsheet](https://medium.com/@abhay.pixolo/naming-conventions-for-git-branches-a-cheatsheet-8549feca2534)
- [Naming conventions for Git Branches — a Cheatsheet](https://medium.com/@abhay.pixolo/naming-conventions-for-git-branches-a-cheatsheet-8549feca2534)

### Commits

Expand All @@ -19,17 +19,17 @@ Reference (참조)
#### prefix

- feat: 새로운 기능 구현
- fix: 버그 수정
- refactor: 코드 개선 및 리팩토링
- docs: 문서화 작업
- chore: 비즈니스 로직과 어플리케이션 로직과 연관 없는 각종 작업들
- style: 코드의 포맷 및 오타 수정 등
- test: 테스트 작성
- perf: 성능 작업
- ci: CI 작업
- build: 빌드 및 패키지 관리 등
- revert: 이전 변경 사항을 되돌리는 revert
- feat: 새로운 기능 구현
- fix: 버그 수정
- refactor: 코드 개선 및 리팩토링
- docs: 문서화 작업
- chore: 비즈니스 로직과 어플리케이션 로직과 연관 없는 각종 작업들
- style: 코드의 포맷 및 오타 수정 등
- test: 테스트 작성
- perf: 성능 작업
- ci: CI 작업
- build: 빌드 및 패키지 관리 등
- revert: 이전 변경 사항을 되돌리는 revert

### Branches

Expand All @@ -46,6 +46,6 @@ Reference (참조)
### Others

- PR이 Merge가 되면 사용했던 브랜치는 삭제한다.
- 코드 리뷰를 위해 모든 팀원을 Reviewer 지정을 한다.
- 코드의 가독성과 손쉬운 Documentation 관리를 위해 주석은 가능하면 작성하지 않는다.
- PR이 Merge가 되면 사용했던 브랜치는 삭제한다.
- 코드 리뷰를 위해 모든 팀원을 Reviewer 지정을 한다.
- 코드의 가독성과 손쉬운 Documentation 관리를 위해 주석은 가능하면 작성하지 않는다.
2 changes: 1 addition & 1 deletion app.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default {
userInterfaceStyle: "light",
splash: {
image: "src/assets/splash.png",
resizeMode: "contain",
resizeMode: "cover",
backgroundColor: "#ffffff",
},
assetBundlePatterns: ["**/*"],
Expand Down

0 comments on commit fc0c8c7

Please sign in to comment.