SkillAgentSearch skills...

SoftUIView

SoftUIView is a Soft-UI (Neumorphism) view written in Swift.

Install / Use

/learn @hmhv/SoftUIView
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

SoftUIView

Platforms Cocoapods SPM compatible Swift Xcode MIT

SoftUIView

SoftUIView is a Soft-UI (Neumorphism) view written in Swift.

Requirements

  • iOS 10.0+
  • Swift 5.0+

Installation

CocoaPods

pod 'SoftUIView'

Swift Package Manager

Open your Xcode project, select File -> Swift Packages -> Add Package Dependency.... and type https://github.com/hmhv/SoftUIView.git.

Manually

Add the <a href="https://github.com/hmhv/SoftUIView/tree/master/Sources/SoftUIView">SoftUIView</a> folder to your Xcode project to use SoftUIView.</p>

Usage

add soft ui view

let softUIView = SoftUIView(frame: .init(x: 100, y: 100, width: 200, height: 200))
view.addSubview(softUIView)

add soft ui view

view customize

softUIView.mainColor = UIColor.brown.cgColor
softUIView.cornerRadius = 50
softUIView.darkShadowColor = UIColor.black.cgColor
softUIView.lightShadowColor = UIColor.yellow.cgColor
softUIView.shadowOpacity = 0.5
softUIView.shadowOffset = .init(width: -6, height: 6)
softUIView.shadowRadius = 10

add soft ui view

handle event

SoftUIView is a subclass of UIControl, so you can use controlEvents.

softUIView.addTarget(self, action: #selector(handleTap), for: .touchUpInside)

@objc func handleTap() {
    // code
}

Example

for more infomation, check ViewController.swift of Example project.

SoftUIView

License

SoftUIView is released under the MIT license. See LICENSE for more information.

View on GitHub
GitHub Stars63
CategoryDevelopment
Updated3mo ago
Forks5

Languages

Swift

Security Score

97/100

Audited on Dec 10, 2025

No findings