vds_ios/VDS/Components/Buttons/ButtonGroup/ButtonGroupCollectionViewCell.swift
Matt Bruce 6ec498a8d7 updated comments for the AppleGuidlinesTouchable
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2023-08-29 11:59:51 -05:00

24 lines
571 B
Swift

//
// ButtonGroupCollectionViewCell.swift
// VDS
//
// Created by Matt Bruce on 12/15/22.
//
import Foundation
import UIKit
extension ButtonGroup {
public class ButtonGroupCollectionViewCell: UICollectionViewCell {}
}
extension ButtonGroup.ButtonGroupCollectionViewCell: AppleGuidelinesTouchable {
/// Overrides to ensure that the touch point meets a minimum of the minimumTappableArea.
override open func point(inside point: CGPoint, with event: UIEvent?) -> Bool {
Self.acceptablyOutsideBounds(point: point, bounds: bounds)
}
}