Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Kraev committed Dec 26, 2022
1 parent 4078958 commit 190bc21
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Example/iOS/ExampleView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,6 @@ struct ExampleView: View {
.contentShape(Rectangle())
.background(Color(UIColor.systemBackground))
.onTapGesture {
print("on cell tap!")
}
.addSwipeAction(menu: .swiped,
state: $state) {
Expand Down Expand Up @@ -365,6 +364,8 @@ struct ExampleView: View {
.padding(.horizontal, 16)
.frame(width: UIScreen.main.bounds.size.width - 32, height: 80)
.background(Color(UIColor.systemBackground))
.onTapGesture {
}
.addSwipeAction(edge: .trailing,
state: $state) {
Button {
Expand Down

0 comments on commit 190bc21

Please sign in to comment.