ListButtonStyle.swift 494 B

12345678910111213141516171819202122
  1. //
  2. // ListButtonStyle.swift
  3. // LoopKitUI
  4. //
  5. // Created by Noah Brauner on 7/13/23.
  6. // Copyright © 2023 LoopKit Authors. All rights reserved.
  7. //
  8. import SwiftUI
  9. public struct ListButtonStyle: ButtonStyle {
  10. public init() { }
  11. public func makeBody(configuration: Configuration) -> some View {
  12. configuration.label
  13. .overlay(
  14. Color(UIColor.tertiarySystemFill)
  15. .opacity(configuration.isPressed ? 0.5 : 0)
  16. )
  17. }
  18. }