Swiftpack.co - Swift Packages by micheltlutz

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

Packages published by micheltlutz

micheltlutz/MLLineChart v2.0.5
A simple Line Chart Lib
⭐️ 29
🕓 3 years 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.
v2.0.5
4 years ago
#### Fix * Up touch area for dots
v2.0.4
4 years ago
#### Fix * Up touch area for dots
v2.0.3
5 years ago
#### Add * Demo target added #### Fix * Fix for bug in Label with 1 dataEntry
v2.0.2
5 years ago
#### Add * Swift 5 Support
v2.0.0
5 years ago
Version 1.2.0
5 years ago
* Suport gradient curved charts ### Usage: ```swift let lineChart = MLLineChart(frame: CGRect(x: 0, y: 0, width: 260, height: 230)) lineChart.translatesAutoresizingMaskIntoConstraints = false lineChart.hasColoredLines = true lineChart.isGradientLineColors = true lineChart.disableScroll = true lineChart.isCurved = true lineChart.axisBackgroundColor = CinguloColors.bgdiaryChart.color lineChart.gradienLinesColors = [UIColor.green.cgColor, UIColor.orange.cgColor,UIColor.red.cgColor]
v1.1.0
5 years ago
#### Add * Support a Swift 4.2 * Remove Dispatch from UIView.animate * lineGap now is open var and can change value to decrease or increase the space between points on the x-axis (only for line chart) * some adjustments to chart calc
Version 1.0
5 years ago
Colored LineChart Curved Chart Chart with horizontal scroll ![img_4605](https://user-images.githubusercontent.com/536630/46353317-3c789500-c632-11e8-944b-d90e631b34b6.jpg) ![img_4604](https://user-images.githubusercontent.com/536630/46353318-3d112b80-c632-11e8-850f-e732b7cf0b8d.jpg)
Beta v0.0.4
5 years ago
micheltlutz/MLTontiatorView v1.1.2
A Simple Custom Activity indicator view
⭐️ 27
🕓 3 years 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.
v1.1.2
5 years ago
#### Add * Support to Swift 5
v1.1.1
5 years ago
v1.1.0
5 years ago
#### Add * Now Support image for spinner ## Usage Example: ViewController > viewDidLoad ```swift let viewActivitySmall = MLTontiatorView() viewActivitySmall.spinnerSize = .MLSpinnerSizeSmall viewActivitySmall.spinnerImage = UIImage(named: "mySpinnerImage") self.view.addSubview(viewActivitySmall) viewActivitySmall.startAnimating() ```
v1.0.0
5 years ago
## [1.0.0 - Swift 4.2](https://github.com/micheltlutz/MLTontiatorView/releases/tag/v1.0.0) (2018-12-04) #### Add * initial project. ## Usage Example: ViewController > viewDidLoad ```swift let viewActivitySmall = MLTontiatorView() viewActivitySmall.spinnerSize = .MLSpinnerSizeSmall viewActivitySmall.spinnerColor = UIColor.purple self.view.addSubview(viewActivitySmall) viewActivitySmall.startAnimating() ```
micheltlutz/jumpper v0.0.1
A simple framework for creating HTML with Swift
⭐️ 21
🕓 23 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.0.9
1 year ago
# New Component Radio Usage ```swift let radio = Radio("option1", id: "option1", name: "option1") ```
0.0.8
3 years ago
- Doctype ```swift let doctype = Doctype() doctype.getString() // or doctype.generate() ``` - Body ```swift let body = Body() body.add(/* Any Element*/) ``` - Head ```swift let head = Head() head.add(/* Any Element*/) ``` - Html ```swift let html = Html() html.add(/* Any Element*/) ``` - LinkStylesheet ```swift let linkCssTag = LinkStylesheet("/styles/milligram.min.css") ``` - Link ```swift let linkTag = Link("/styles/milligram.min.css", attributes: ("rel", "stylesheet")) ``` - Meta ```swift let meta = Meta(("charset", "utf-8"))) ``` - Script ```swift let script = Script() script.add("var myJsVar = 1") let script = Script(("src","myScript.js")) ``` - Title ```swift let pageTitle = Title("This is Page.") ``` - Footer ```swift let footer = Footer() footer.add(/* Any Element*/) ``` - Header ```swift let header = Header() header.add(/* Any Element*/) ```
0.0.7
3 years ago
## New Composite class to group elements without tag Fix init ### Usage ```swift let element = CompositeElements() element.add("Hello, World!") element.add(Label("My Label")) // output: Hello, World!<label>My Label</label> ``` ## New Struct factory FactoryElements to remove duplicated functions ### Usage ```swift let element = FactoryElements.textWith("Hello, World!") ```
0.0.6
3 years ago
## New Composite class to group elements without tag ### Usage ```swift let element = CompositeElements() element.add("Hello, World!") element.add(Label("My Label")) // output: Hello, World!<label>My Label</label> ``` ## New Struct factory FactoryElements to remove duplicated functions ### Usage ```swift let element = FactoryElements.textWith("Hello, World!") ```
0.0.5
3 years ago
Little fix change class Fieldset to public. ### Usage Example: ```swift let fieldset = Fieldset() let labelName = Label("Name") labelName.addAttribute(("for", "nameField")) fieldset.add(labelName) let inputName = InputText("", id: "nameField", placeholder: "Name") fieldset.add(inputName) let labelAge = Label("Age Range") labelAge.addAttribute(("for", "ageRangeField")) fieldset.add(labelAge) ```
0.0.4
3 years ago
- Chance access `func add` permission in `ContainerElementBase.swift`
0.0.3
3 years ago
## Update Package - Remove platform restrictions from Package.swift
0.0.2
3 years ago
This Version add new unit tests, normalize components and add documentation.
0.0.1
3 years ago
Starter version
micheltlutz/MLAudioPlayer v1.2.1
AudioPlayer for Swift projects
⭐️ 14
🕓 3 years 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.
v1.2.1
4 years ago
#### Add - Load audio after ... In some cases it is necessary to delay loading the audio until some other screen loading for example is completed. for these cases it is possible to configure the player in this way. Usage: ``` //set autoload to false let mlAudioPlayer = MLAudioPlayer(urlAudio: "http://youraudio.mp3", config: nil, isLocalFile: false, autoload: false) /** Example: Loading after using Post to .MLAudioPlayerNotification userInfo = ["action": MLPlayerActions.load] */ override func viewWillAppear(_ animated: Bool) { super.viewWillAppear(animated) NotificationCenter.default.post(name: .MLAudioPlayerNotification, object: nil, userInfo: ["action": MLPlayerActions.load]) } ``` On ```viewWillAppear``` Player starting load - Config start volume ```MLPlayerConfig.initialVolume``` #### Fix - Multiple audios loading in same context - Bug animation when change tab or pageControll swipe
v1.2.0
4 years ago
#### Add - Now support MPRemoteCommandCenter - Properties to change infos on lock screen ```swift class MLAudioPlayer { /// Define a Title Audio to show in block Screen public var titleAudio = "" /// Define a Title for album to show in lock Screen public var titleAlbum = "" /// Define a artist name to show in lock Screen public var artistName = "" /// Define a artwork to show in block Screen public var artwork: UIImage? /// Contains a current time audio public var currentTime: Double = 0.0 } ```
v1.1.1
5 years ago
#### Add * Swift 5
v1.1.0
5 years ago
#### Add * MLPlayerConfig options ```swift MLPlayerConfig.tryAgainFont: UIFont? MLPlayerConfig.tryAgainColor: UIColor? ``` * Playing local storage files ```swift var mlLocalAudioPlayer: MLAudioPlayer = { // For playing the stream/online files let mlAudioPlayer = MLAudioPlayer(urlAudio: "file://urlyourlocalaudio.mp3", isLocalFile: true) return mlAudioPlayer }() ```
Version 1.0.5
5 years ago
#### Add * Handler indicate when height of player change. ```swift didUpdateHeightConstraint: ((_ constant: CGFloat) -> Void)? ``` ##### Usage: ```swift let mlAudioPlayer = MLAudioPlayer(urlAudio: "http://urlyouraudio.mp3") mlAudioPlayer.didUpdateHeightConstraint = { constant in self.heightConstraint?.constant = (constant + 32) } ``` #### Change Change default values in MLPlayerConfig heightPlayerFull -> from: 216 to: 177 heightPlayerMini -> from: 60 to: 50 New attribute usad on labels timer: ```swift public var labelsTimerFont: UIFont? = UIFont.systemFont(ofSize: 12) ```
v1.0.4
5 years ago
#### Remove Remove firs text loading from PlayerButton
Versão 1.0.3
5 years ago
```swift NotificationCenter.default.post(name: Notification.Name.MLAudioPlayerNotification, object: nil, userInfo: ["action":MLPlayerActions.stop]) ``` Available Actions for MLAudioPlayer - play - pause - stop - reset
Versão 1.0.2
5 years ago
#### Add * Support for building iOS 10.0
Versão 1.0.1
5 years ago
#### Add * Support for building with Xcode 10 and Swift 4.2. This version requires Xcode 10 or later with Swift 4.2 compiler. #### Fix - Change state when audio finished - More configs to width and height on full and mini types - New margin mini player old 24 new 8
Versão 1.0
5 years ago
micheltlutz/MLStarRating v1.0.4
Star Ratings for swift projects
⭐️ 13
🕓 3 years 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.
v1.0.4
5 years ago
#### Add * Support to Swift 5
v1.0.3
5 years ago
#### Add - Change selected star programmatically ```swift let mlStarRating = MLStarRating() mlStarRating.selectedStar = 4 ```
Versão 1.0.2
5 years ago
fix Initializer with star checked
Versão v1.0.1 Swift 4.2
5 years ago
#### Add * Support for building with Xcode 10 and Swift 4.2. This version requires Xcode 10 or later with Swift 4.2 compiler.
Versão 1.0
5 years ago
5 years ago
v0.0.3
5 years ago
version v0.0.2
5 years ago
micheltlutz/MLVideoPlayer v1.0.1
A Simple Video player write in swift
⭐️ 11
🕓 3 years 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.
v1.0.1
5 years ago
#### Add * Support to Swift 5
Version 1.0.0
5 years ago
Example: ViewController > viewDidLoad ````swift let mLVideoPlayer = MLVideoPlayer(url: "https://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4", width: 280, height: 200) self.addChild(mLVideoPlayer.viewController) self.view.addSubview(mLVideoPlayer.viewController.view) mLVideoPlayer.viewController.didMove(toParent: self) ````
micheltlutz/MLQuestionCheck v1.1.3
A check component for Swift projects
⭐️ 10
🕓 3 years 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.
v1.1.3
4 years ago
#### Add * Touch area in all component
v1.1.2
5 years ago
#### Add * Support to Swift 5
v1.1.1
5 years ago
Fix initial state checked font not default
v1.1.0
5 years ago
#### Add * New property to set checked font ```fontChecked: UIFont ``` * Fix initial state checked
Versão 1.0.1
5 years ago
#### Add * Support for building with Xcode 10 and Swift 4.2. This version requires Xcode 10 or later with Swift 4.2 compiler.
Version 1.0
5 years ago
only doc adjusts
5 years ago
v0.0.1
5 years ago
micheltlutz/MLStackController 1.0.3
Create Stack Controller like a Music, Reminders, Podcast Apps
⭐️ 3
🕓 4 years 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.
1.0.3
4 years ago
1.0.2
4 years ago
1.0.1
4 years ago
Xcode 11 Build
1.0
4 years ago
iOS
micheltlutz/MLChat 1.0.2
Simple Chat conversation module
⭐️ 3
🕓 2 years 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.
1.0.2
4 years ago
# 1.0.2 Fix reload data
Input sopport
4 years ago
First Version
4 years ago
iOS tvOS
micheltlutz/FaladoresKit 0.0.1
Repositório com utilitários de Swift feito com alegria por faladores =D
⭐️ 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.
0.0.1
1 year ago
Simple utils
iOS macOS watchOS tvOS
micheltlutz/MLKit v0.0.2
Simple utils for my personal Swift projetcts
⭐️ 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.
Release v0.0.2
1 year ago
WIP: Create release.yml
0.0.1
1 year ago
Simple utils
iOS macOS watchOS tvOS

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