SnackUI allows developers to build beautiful iOS-apps faster. SnackUI is responsively designed allowing your iOS-app to scale on multiple devices
To use SnackUI components, all you need to do is install SnackUI via the Swift Package Manager:
https://github.com/charming-whaley/SnackUI.git
Voilà ! Now you are ready to improve UI in your project!
After the installation, add any SnackUI component to your project:
struct ContentView: View {
var body: some View {
SnackButton(label: "WoW!", color: Color.red, size: .medium) {
print("This is the most significant UI-library I've ever seen!")
}
}
}