Skip to content

changemin/PressableButton

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Project logo

🕹 SwiftUI Pressable Button 🕹

License Release


📹 Preview

🏁 Getting Started

Requirements

  • Xcode 11+
  • SwiftUI
  • iOS 14+
  • macOS 10.15+

Installaion

Swift Package Manager(SPM)

File ➜ Swift Packages ➜ Add Package Dependancy..
.package(url: "https://github.com/Changemin/PressableButton", from: "1.1.0")

🎈Usage

PressableButton(action: { YOUR ACTION }) {
    // YOUR VIEW
}
  • action : Functions to execute

🛠Custom Modifiers

PressableButton(action: { YOUR ACTION }) {
    // YOUR VIEW
}.accentColor(_ color: color)
.cornerRadius(_ amount: CGFloat)
.frame(width: CGFloat, height: CGFloat)
.enableHaptic(intensity: UIImpactFeedbackGenerator.FeedbackStyle)
.disableHaptic()
  • .accentColor() : Accent color
  • .cornerRadius() : Corner Radius of the button
  • .frame() : Size of the button
  • .enableHaptic() : Enable haptic effect with insensity(.heavy, .medium, .light, .rigid, .soft)
  • .disableHaptic() : Disable haptic effect

Example

👶 Simple

import PressableButton

struct ContentView: View {
    var body: some View {
        PressableButton(action: {
            print("Button pressed")
        }) {
            Text("Simple Example").foregroundColor(.white)
        }
    }
}

Result

🛠 Custom Modifiers

import PressableButton

struct ContentView: View {
    var body: some View {
        PressableButton(action: {
            print("Button pressed")
        }) {
            Text("PUSH ME !").foregroundColor(.white)
        }
        .enableHaptic(.soft)
        .accentColor(.orange)
        .cornerRadius(0)
    }
}

Result

✅ TODO

  • support variable styles FlatStyle, PushButtonStyle, etc
  • add haptic feedback

📜 License

PressableButton is available under the MIT license. See the LICENSE file for more info.

✍️ Author