Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,16 +135,13 @@ LinClean/
│ └── use-theme-color.ts # 현재 테마에 맞는 색상 값을 반환하는 헬퍼
├── assets/ # 정적 에셋
│ ├── images/ # 앱 아이콘, 스플래시, 로그인/폴더 이미지 리소스
│ ├── images/ # 앱 아이콘, 스플래시, 로그인 이미지 리소스
│ │ ├── icon.png # iOS/기본 앱 아이콘
│ │ ├── favicon.png # 웹 파비콘
│ │ ├── splash-icon.png # 스플래시 스크린 이미지
│ │ ├── android-icon-*.png # Android 적응형 아이콘
│ │ ├── ic_kakao.png # 카카오 로그인 버튼 아이콘
│ │ ├── login_wordmark.png # 로그인 화면 LinClean 워드마크
│ │ ├── folder_active.png # 활성 폴더 탭/카드 아이콘
│ │ ├── folder_unactive.png # 비활성 폴더 탭/카드 아이콘
│ │ └── react-logo*.png # Expo 템플릿 데모 이미지
│ │ ├── ic_google.png # Google 로그인 버튼 아이콘
│ │ └── login_wordmark.png # 로그인 화면 LinClean 워드마크
│ └── animations/
│ └── scanning.json # 스캔 진행 화면 애니메이션 에셋
Expand Down
7 changes: 4 additions & 3 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,12 @@
"expo-splash-screen",
{
"image": "./assets/images/splash-icon.png",
"imageWidth": 200,
"imageWidth": 260,
"resizeMode": "contain",
"backgroundColor": "#ffffff",
"backgroundColor": "#F4F8F6",
"dark": {
"backgroundColor": "#000000"
"image": "./assets/images/splash-icon.png",
"backgroundColor": "#F4F8F6"
}
}
],
Expand Down
15 changes: 0 additions & 15 deletions app/(tabs)/(explore)/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { Image } from 'expo-image';
import { StyleSheet } from 'react-native';

import { Collapsible } from '@/components/ui/collapsible';
Expand Down Expand Up @@ -49,20 +48,6 @@ export default function TabTwoScreen() {
<ThemedText type="defaultSemiBold">w</ThemedText> in the terminal running this project.
</ThemedText>
</Collapsible>
<Collapsible title="Images">
<ThemedText>
For static images, you can use the <ThemedText type="defaultSemiBold">@2x</ThemedText> and{' '}
<ThemedText type="defaultSemiBold">@3x</ThemedText> suffixes to provide files for
different screen densities
</ThemedText>
<Image
source={require('@/assets/images/react-logo.png')}
style={{ width: 100, height: 100, alignSelf: 'center' }}
/>
<ExternalLink href="https://reactnative.dev/docs/images">
<ThemedText type="link">Learn more</ThemedText>
</ExternalLink>
</Collapsible>
<Collapsible title="Light and dark mode components">
<ThemedText>
This template has light and dark mode support. The{' '}
Expand Down
Binary file modified assets/images/android-icon-background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/android-icon-foreground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/android-icon-monochrome.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/images/folder_active.png
Binary file not shown.
Binary file removed assets/images/folder_unactive.png
Binary file not shown.
Binary file modified assets/images/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/images/partial-react-logo.png
Binary file not shown.
Binary file removed assets/images/react-logo.png
Binary file not shown.
Binary file removed assets/images/react-logo@2x.png
Binary file not shown.
Binary file removed assets/images/react-logo@3x.png
Binary file not shown.
Binary file modified assets/images/splash-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading