ChipGroup is a simple and highly customizable chip group for iOS, in SwiftUI.
Select File -> Swift Packages -> Add Package Dependency and enter https://github.com/Open-Bytes/ChipGroup.
You can add ChipGroup as a package dependency in your Package.swift file:
let package = Package(
//...
dependencies: [
.package(url: "https://github.com/Open-Bytes/ChipGroup", .upToNextMajor(from: "0.1.0"))
]
//...
)From there, refer to ChipGroup in target dependencies:
targets: [
.target(
name: "YourLibrary",
dependencies: [
"ChipGroup"
]
//...
),
// ...
]Then simply import ChipGroup wherever you’d like to use the library.
- Import
ChipGroup.
import ChipGroup- Create an array of
ChipItemthat conform toChipItemProtocol.
let items = [
ChipItem(name: "Red"),
ChipItem(name: "Green"),
ChipItem(name: "Blue"),
ChipItem(name: "Purple"),
ChipItem(name: "Orange")
]- You can add chip to the ChipGroup , or set custom background for both selected and deselected state, Selection type, Size and font through this code:
ChipGroup(
chips: items,
width: UIScreen.main.bounds.width - 120,
selection: .none,
selectedBackground: Capsule().fill(Color.orange),
deselectedBackground: Capsule().fill(Color.pink.opacity(0.8)),
selectedTextColor: .white,
deselectedTextColor: .white,
font: .system(size: 20, weight: .bold, design: .default)
)You can provide your own custom background through this code:
struct CircleBackground: View {
var color: Color
var body: some View {
content()
}
private func content() -> some View {
VStack(spacing: 6) {
Circle().fill(color)
.frame(width: 70, height: 70)
}
}
}ChipGroup
is an example app demonstrates how you can use the library.
-
PRs are welcome, let's make this library better. 🙌
-
Please ⭐ if you like the idea!
Apache License, Version 2.0
click to reveal License
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.