Skip to content

Commit

Permalink
fix: .gitignore 항목 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
greetings1012 committed Oct 31, 2023
1 parent ba6a9e4 commit 13a740a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 15 deletions.
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ Network Trash Folder
Temporary Items
.apdisk

### Objective-C ###Swift.gitignore
### Objective-C ###
Swift.gitignore
xcuserdata/
*.xcscmblueprint
*.xccheckout
Expand Down Expand Up @@ -121,4 +122,5 @@ Derived/
*.p12
master.key
*.package.resolved
GoogleService-Info.plist
GoogleService-Info.plist
Targets/D3N/Sources/Config
19 changes: 6 additions & 13 deletions Targets/D3N/Sources/Feature/Today/Main/TodayMainView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -66,21 +66,14 @@ public struct TodayMainView: View {
isPressing = false
}
.onLongPressGesture(minimumDuration: .infinity,
pressing: { pressing in
if pressing {
withAnimation(.easeOut(duration: 0.3)){
isPressing = pressing
}
perform: {
//TODO: 꾹 눌렀을 때 동작 추가
}
if !pressing{
withAnimation(.easeOut(duration: 0.3)){
isPressing = pressing
}
) { pressing in
withAnimation(.easeOut(duration: 0.3)){
isPressing = pressing
}
}, perform: {
//TODO: 꾹 눌렀을 때 동작 추가
}
)
}

ForEachStore(self.store.scope(state: \.newsListItems, action: TodayMainStore.Action.newsListItems(id:action:))) {
NewsListItemCellView(store: $0)
Expand Down
6 changes: 6 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 13a740a

Please sign in to comment.