Skip to content

Commit

Permalink
added badges
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaischneider committed Jan 17, 2024
1 parent 2cfcffa commit e430f61
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ import PackageDescription

let package = Package(
name: "SimpleConstraints",
platforms: [.iOS(.v12)],
platforms: [
.iOS(.v12),
.tvOS(.v12)
],
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "SimpleConstraints",
targets: ["SimpleConstraints"]),
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.target(
name: "SimpleConstraints"),
.testTarget(
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
<img src="simple_constraints.png" width="1000" alt="SimpleConstraints"/>
</p>

![Release](https://img.shields.io/github/v/release/nicolaischneider/SimpleConstraints)
![Swift 5.9](https://img.shields.io/badge/Swift-5.9-orange)
![iOS v12+](https://img.shields.io/badge/iOS-v12+-blue)
![tvOS v12+](https://img.shields.io/badge/tvOS-v12+-blue)
![License: MIT](https://img.shields.io/badge/license-MIT-brightgreen)

# SimpleConstraints

SimpleConstraints is a Swift library designed to simplify the process of creating and managing constraints in UIKit. It provides a set of utilities that make it easier to align and position UI elements in your iOS applications.
Expand Down

0 comments on commit e430f61

Please sign in to comment.