All Projects → hallee → neumorphic-style

hallee / neumorphic-style

Licence: other
🎛 Simple SwiftUI ‘neumorphic’ button style

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to neumorphic-style

SwiftUIFormValidator
Declarative form validator for SwiftUI.
Stars: ✭ 34 (-37.04%)
Mutual labels:  swiftpm, swiftui
ConsoleUI
Rasterize SwiftUI views to images from macOS terminal
Stars: ✭ 52 (-3.7%)
Mutual labels:  swiftpm, swiftui
SSSwiftUISpinnerButton
SSSwiftUISpinnerButton is a collection of various spinning animations for buttons in SwiftUI.
Stars: ✭ 37 (-31.48%)
Mutual labels:  button, swiftui
BDUIKnit
A Swift Package Manager packed with SwiftUI custom reusable UI components and extensions.
Stars: ✭ 21 (-61.11%)
Mutual labels:  swiftpm, swiftui
Actions
⚙️ Supercharge your shortcuts
Stars: ✭ 640 (+1085.19%)
Mutual labels:  swiftui
StoryboardPreviewsBySwiftUI
Introduce how to make the Storyboard file and Xib file correspond to the preview function by SwiftUI.
Stars: ✭ 35 (-35.19%)
Mutual labels:  swiftui
MyFavoriteB
macOS上的B站民间客户端
Stars: ✭ 33 (-38.89%)
Mutual labels:  swiftui
Laden
SwiftUI loading indicator view
Stars: ✭ 23 (-57.41%)
Mutual labels:  swiftui
SuperShapes
A tiny macOS app showing how to use Satin, Forge, Youi and SwiftUI to visualize super shapes in 3D.
Stars: ✭ 42 (-22.22%)
Mutual labels:  swiftui
ImagePickerView
🌇 PHPickerViewController / UIImagePickerController for SwiftUI
Stars: ✭ 18 (-66.67%)
Mutual labels:  swiftui
Movie Trailers SwiftUI
A simple app which shows the lastest movies trailers based on different genres developed using SwiftUI.
Stars: ✭ 51 (-5.56%)
Mutual labels:  swiftui
ObjectUI
Create SwiftUI Views with any data
Stars: ✭ 19 (-64.81%)
Mutual labels:  swiftui
BottomSheet
BottomSheet lets you add custom bottom sheets to your SwiftUI apps.
Stars: ✭ 111 (+105.56%)
Mutual labels:  swiftui
android-dev-challenge-compose-4
Weather app done in Jetpack Compose for the #AndroidDevChallenge 2021 🌦 ☀️. Neumorphism UI.
Stars: ✭ 84 (+55.56%)
Mutual labels:  neumorphism
NeumorphismTab
Custom TabBarController with Neumorphism.
Stars: ✭ 78 (+44.44%)
Mutual labels:  neumorphism
RichText
Easily show RichText(html) in SwiftUI
Stars: ✭ 25 (-53.7%)
Mutual labels:  swiftui
GITGET
GitHub의 Contributions를 iOS의 Widget으로 보여주는 App
Stars: ✭ 101 (+87.04%)
Mutual labels:  swiftui
myyearwithgit
代码仓库年终总结报告。
Stars: ✭ 176 (+225.93%)
Mutual labels:  swiftui
RangeUISlider
📱 🔵➖🔵 An iOS range selection slider compatible with UIKit and SwiftUI. Developed using autolayout and highly customizable using IBDesignabled and IBInspectable or programmatically. It support also RTL (right to left) languages automatically out of the box.
Stars: ✭ 98 (+81.48%)
Mutual labels:  swiftui
mocka
Mocka — A Mock Server Made for Developers by Developers, made in Swift ❤️
Stars: ✭ 56 (+3.7%)
Mutual labels:  swiftui

SwiftUI Neumorphic Button Style

This is a SwiftUI ButtonStyle for styling buttons in a neumorphic style.

I wrote a blog post about it.

You can download this as an interactive Swift Playground.

Usage

import NeumorphicStyle

// ...

@Environment(\.colorScheme) private var colorScheme

var body: some View {
    Button("Hello world") { }
    	.buttonStyle(NeumorphicButtonStyle(colorScheme: colorScheme))
}

Installation

let package = Package(
    ...
    dependencies: [
        .package(url: "https://github.com/hallee/neumorphic-style", from: "0.0.1")
    ],
    ...
)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].