Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ private struct CardFooterLayout: Layout {

let y = maxHeight / 2
// Move the hidden buttons out of visible area
let hideRect = CGRect(x: -2000, y: y, width: 0, height: 0)
let hideRect = CGRect(x: finalWidth + 0.3, y: y, width: 0.3, height: 0.3)
var frames = [CGRect]()

var x: CGFloat = 0
Expand Down Expand Up @@ -293,6 +293,7 @@ public struct CardFooterBaseStyle: CardFooterStyle {
configuration.action
}
}
.clipped()
}

/**
Expand Down
Loading