Swiftpack.co - Swift Packages by c-villain

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.

Packages published by c-villain

c-villain/SwipeActions 0.3.3
Swipe actions, swipe menu based on SwiftUI
⭐️ 164
🕓 49 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
0.3.3
49 weeks ago
- Add CocoaPods support #17 #18 - Fix the measureSize function bug #16
0.3.2
1 year ago
minor improvements, add the new example with swipe actions for cells with context menu
0.3.1
1 year ago
0.3.0
1 year ago
Some features and improvements were added: - project with different examples to package - macOS support, including app example #2 - ```SwipeRole``` for full swiping. Quick guide you may find [here](https://github.com/c-villain/SwipeActions#full-swipe-action). - ```SwipeState``` for automatically closing other opened actions during sliding. Quick guide you may find [here](https://github.com/c-villain/SwipeActions#quick-start). - updated ReadMe. Added [recommendations for use](https://github.com/c-villain/SwipeActions#recommendations-for-use).
0.2.0
2 years ago
- add `.slided` and `.swiped` menu-type - fix content for lazy views - fix drag gesture (onEnded not always called)
0.1.0
2 years ago
For now I have next modifiers: * `.addSwipeAction { Leading {...} Trailing {...} }` * `.addSwipeAction(edge: .leading)` * `.addSwipeAction(edge: .trailing)`
iOS macOS
c-villain/Animatable 0.1.0
Yet another animation modifiers (like fireworks, live comments or explosion) on SwiftUI
⭐️ 34
🕓 1 year ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
0.1.0
1 year ago
iOS macOS
c-villain/Shapes 0.2.1
Different shapes on pure SwiftUI
⭐️ 28
🕓 49 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
0.2.1
49 weeks ago
- Fix missing `public init()` #5
0.2.0
1 year ago
- Add Diamond shape #4
0.1.0
1 year ago
Added basic shapes: - RoundedRectangle for specific rounded corners - Wave - Bubble (for chat messages)
iOS macOS
c-villain/YandexMapsMobile 4.5.1
Yandex Maps Mobile full Swift package
⭐️ 23
🕓 7 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
4.5.1
7 weeks ago
updated to 4.5.1 Release notes you can find [here](https://yandex.ru/dev/maps/mapkit/doc/dg/concepts/versions.html)
4.5.0
10 weeks ago
updated to 4.5.0 Release notes you can find [here](https://yandex.ru/dev/maps/mapkit/doc/dg/concepts/versions.html)
4.4.0
31 weeks ago
updated to 4.4.0 Release notes you can find [here](https://yandex.ru/dev/maps/mapkit/doc/dg/concepts/versions.html)
4.3.2
36 weeks ago
updated to 4.3.2 Release notes you can find [here](https://yandex.ru/dev/maps/mapkit/doc/dg/concepts/versions.html)
4.3.1
49 weeks ago
Release notes you can find [here](https://yandex.ru/dev/maps/mapkit/doc/dg/concepts/versions.html)
4.3.0
49 weeks ago
Release notes you can find [here](https://yandex.ru/dev/maps/mapkit/doc/dg/concepts/versions.html)
4.2.2
1 year ago
<img src="https://img.shields.io/badge/release-4.2.2-blue" /> <img src="https://img.shields.io/badge/Xcode%20 > 14.1-OK-green" /> <img src="https://img.shields.io/badge/Simulators-OK-green" /> <img src="https://img.shields.io/badge/Device-OK-green" /> ❗️ Works on Apple silicone without Rosetta mode. 1. You should init YMKMapView with vulkanPreferred: true ```swift YMKMapView.init(frame: .zero, vulkanPreferred: isM1Simulator()) .... #if targetEnvironment(simulator) public static func isM1Simulator() -> Bool { return TARGET_CPU_ARM64 != 0 } #else public static func isM1Simulator() -> Bool { false } #endif ``` 2. Call YMKMapKit.sharedInstance() in AppDelegate as in [example](https://github.com/yandex/mapkit-ios-demo/blob/master/MapKitDemo/AppDelegate.swift) ```swift /** If you create instance of YMKMapKit not in application:didFinishLaunchingWithOptions: you should also explicitly call YMKMapKit.sharedInstance().onStart() */ YMKMapKit.sharedInstance() ```
4.2.1
1 year ago
<img src="https://img.shields.io/badge/release-4.2.1-blue" /> <img src="https://img.shields.io/badge/Xcode%20 > 14.0-OK-green" /> <img src="https://img.shields.io/badge/Simulators-OK-green" /> <img src="https://img.shields.io/badge/Device-OK-green" /> ❗️ Works on Apple silicone without Rosetta mode. 1. You should init YMKMapView with vulkanPreferred: true ```swift YMKMapView.init(frame: .zero, vulkanPreferred: isM1Simulator()) .... #if targetEnvironment(simulator) public static func isM1Simulator() -> Bool { return TARGET_CPU_ARM64 != 0 } #else public static func isM1Simulator() -> Bool { false } #endif ``` 2. Call YMKMapKit.sharedInstance() in AppDelegate as in [example](https://github.com/yandex/mapkit-ios-demo/blob/master/MapKitDemo/AppDelegate.swift) ```swift /** If you create instance of YMKMapKit not in application:didFinishLaunchingWithOptions: you should also explicitly call YMKMapKit.sharedInstance().onStart() */ YMKMapKit.sharedInstance() ```
4.1.0
1 year ago
<img src="https://img.shields.io/badge/release-4.1.0-blue" /> <img src="https://img.shields.io/badge/Xcode%20 > 13.3-OK-green" /> <img src="https://img.shields.io/badge/Simulators-OK-green" /> <img src="https://img.shields.io/badge/Device-OK-green" /> ❗️ Works on Apple silicone without Rosetta mode. 1. You should init YMKMapView with vulkanPreferred: true ```swift YMKMapView.init(frame: .zero, vulkanPreferred: isM1Simulator()) .... #if targetEnvironment(simulator) public static func isM1Simulator() -> Bool { return TARGET_CPU_ARM64 != 0 } #else public static func isM1Simulator() -> Bool { false } #endif ``` 2. Call YMKMapKit.sharedInstance() in AppDelegate as in [example](https://github.com/yandex/mapkit-ios-demo/blob/master/MapKitDemo/AppDelegate.swift) ```swift /** If you create instance of YMKMapKit not in application:didFinishLaunchingWithOptions: you should also explicitly call YMKMapKit.sharedInstance().onStart() */ YMKMapKit.sharedInstance() ```
4.0.1
1 year ago
❗️ Recommended to Open Xcode using Rosetta Release with v 4.0.1 binary framework with Yandex mobile maps is taken from [here](https://maps-ios-pods-public.s3.yandex.net/YandexMapsMobile-2020082814.7344935-775744421.framework.zip) and patched using huge knowledges of [Igor Makarov](https://github.com/igor-makarov). ___________ <img src="https://img.shields.io/badge/release-4.0.1-blue" /> <img src="https://img.shields.io/badge/Xcode%2013.3/13.4-Rosetta-blue" /> <img src="https://img.shields.io/badge/Simulators-OK-green" /> <img src="https://img.shields.io/badge/Device-OK-green" /> <img src="https://img.shields.io/badge/release-4.0.1-blue" /> works on Xcode > 13.3 can build both on device and simulators but on simulator crashed with error (without Rosetta mode): ``` 'cyclone' is not a recognized processor for this target (ignoring processor) ```
iOS
c-villain/Refreshable 0.2.0
Pull to refresh, refreshable based on SwiftUI
⭐️ 10
🕓 1 year ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
0.2.0
1 year ago
Add ScrollDistance to control responsiveness for refreshable during scrolling ```swift import Refreshable struct Constants { public static let isPad: Bool = UIDevice.current.userInterfaceIdiom == .pad } struct YourView: View { var body: some View { ScrollView { RefreshControl(Constants.isPad ? .long : .short, // <= HERE coordinateSpace: .named("List")) { // do your work on refresh here } LazyVStack { ... } } .coordinateSpace(name: "List") } } ```
0.1.0
1 year ago
c-villain/PopoverPresenter 0.2.1
Demo SwiftUI-project with custom alerts/popovers
⭐️ 7
🕓 1 year ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
0.2.1
1 year ago
0.2.0
1 year ago
Remove background for popup view
0.1.0
2 years ago
iOS
c-villain/YandexMapsMobileLite 4.5.2
Yandex Lite Maps Mobile Swift package
⭐️ 6
🕓 5 weeks ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
4.5.2
5 weeks ago
This is the 4.5.1 version official Yandex release with some fixes: #1
4.5.1
7 weeks ago
updated to 4.5.1 Release notes you can find [here](https://yandex.ru/dev/maps/mapkit/doc/dg/concepts/versions.html)
4.5.0
10 weeks ago
updated to 4.5.0 Release notes you can find [here](https://yandex.ru/dev/maps/mapkit/doc/dg/concepts/versions.html)
4.4.0
31 weeks ago
Upgrade to 4.4.0 Release notes you can find [here](https://yandex.ru/dev/maps/mapkit/doc/dg/concepts/versions.html)
4.3.2
36 weeks ago
Upgrade to 4.3.2 Release notes you can find [here](https://yandex.ru/dev/maps/mapkit/doc/dg/concepts/versions.html)
4.3.1
49 weeks ago
Upgrade to 4.3.1 Release notes you can find [here](https://yandex.ru/dev/maps/mapkit/doc/dg/concepts/versions.html)
4.3.0
49 weeks ago
upgade to 4.3.0
4.2.2
1 year ago
upgrade for 4.2.2 lite
4.1.0
1 year ago
iOS
c-villain/ADEUMInstrumentation 2021.8.1
AppDynamics Swift package
⭐️ 1
🕓 1 year ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
2021.8.1
1 year ago
iOS
c-villain/card.io-iOS-SDK 5.4.1
Swift package for card-io: card.io-iOS-SDK
⭐️ 0
🕓 1 year ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
5.4.1
1 year ago
SwiftPM for [this](https://github.com/card-io/card.io-iOS-SDK/releases/tag/5.4.1) release.
iOS
c-villain/FirebaseBinaries 9.6.0
Swift package with Firebase binaries
⭐️ 0
🕓 1 year ago
🔖 Release Notes

Releases

The markdown parsing is broken/disabled for release notes. Sorry about that, I'm chasing the source of a crash that's been bringing this website down for the last couple of days.
9.6.0
1 year ago
The Firebase Apple SDK 9.6.0 . For more details, see the [Firebase Apple SDK release notes](https://firebase.google.com/support/release-notes/ios#9.6.0) or go to [official GitHub repository](https://github.com/firebase/firebase-ios-sdk/releases/tag/9.6.0).
9.5.0
1 year ago
The Firebase Apple SDK 9.5.0 . For more details, see the [Firebase Apple SDK release notes](https://firebase.google.com/support/release-notes/ios#9.5.0) or go to [official GitHub repository](https://github.com/firebase/firebase-ios-sdk/releases/tag/9.5.0).
9.2.0
1 year ago
The Firebase Apple SDK (9.2.0). For more details, see the [Firebase Apple SDK release notes](https://firebase.google.com/support/release-notes/ios#9.2.0) or go to [official GitHub repository](https://github.com/firebase/firebase-ios-sdk/releases/tag/9.2.0).
iOS macOS watchOS tvOS

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics