{"id":24014871,"url":"https://github.com/adamfootdev/featureskit","last_synced_at":"2025-04-15T11:44:23.847Z","repository":{"id":192845240,"uuid":"674309445","full_name":"adamfootdev/FeaturesKit","owner":"adamfootdev","description":"Add a features list screen to your app in just a few lines of code.","archived":false,"fork":false,"pushed_at":"2024-10-04T11:41:51.000Z","size":244,"stargazers_count":35,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-25T16:21:54.146Z","etag":null,"topics":["ios","swiftui","xcode"],"latest_commit_sha":null,"homepage":"","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/adamfootdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-08-03T16:16:56.000Z","updated_at":"2025-03-20T11:34:10.000Z","dependencies_parsed_at":null,"dependency_job_id":"27e2db36-85ef-4132-97d8-b8d59b4de781","html_url":"https://github.com/adamfootdev/FeaturesKit","commit_stats":null,"previous_names":["adamfootdev/featureskit"],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adamfootdev%2FFeaturesKit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adamfootdev%2FFeaturesKit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adamfootdev%2FFeaturesKit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adamfootdev%2FFeaturesKit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adamfootdev","download_url":"https://codeload.github.com/adamfootdev/FeaturesKit/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249064500,"owners_count":21207104,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ios","swiftui","xcode"],"created_at":"2025-01-08T07:37:50.861Z","updated_at":"2025-04-15T11:44:23.826Z","avatar_url":"https://github.com/adamfootdev.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FeaturesKit\n\n![Feature Graphic](https://github.com/adamfootdev/FeaturesKit/blob/main/Assets/feature-graphic.png?raw=true)\n![Platform](https://img.shields.io/badge/platforms-iOS%2FiPadOS%2015.0%2B%20%7C%20macOS%2013.0%2B%20%7C%20tvOS%2015.0%2B%20%7C%20visionOS%201.0%2B%20%7C%20watchOS%208.0%2B-blue)\n\nFeaturesKit provides developers for Apple platforms with the ability to display a list of configured features in their apps. This is built using SwiftUI so can be displayed natively from a SwiftUI app or using a UIHostingController in a UIKit app, and has been designed to mimic the style of built-in Apple screens.\n\nThis has been localised into multiple languages and the buttons will automatically adapt to your appʼs accent color.\n\n1. [Requirements](#requirements)\n2. [Integration](#integration)\n3. [Usage](#usage)\n    - [FKConfiguration](#fkconfiguration)\n    - [FKItem](#fkitem)\n    - [FeaturesView](#featuresview)\n4. [Other Packages](#other-packages)\n    - [AboutKit](https://github.com/adamfootdev/AboutKit)\n    - [HelpKit](https://github.com/adamfootdev/HelpKit)\n\n## Requirements\n\n- iOS/iPadOS 15.0+\n- macOS 13.0+\n- tvOS 15.0+\n- visionOS 1.0+\n- watchOS 8.0+\n- Xcode 15.0+\n\n## Integration\n\n### Swift Package Manager\n\nFeaturesKit can be added to your app via Swift Package Manager in Xcode. Add to your project like so:\n\n```swift\ndependencies: [\n    .package(url: \"https://github.com/adamfootdev/FeaturesKit.git\", from: \"1.0.0\")\n]\n```\n\n## Usage\n\nTo start using the framework, you'll need to import it first:\n\n```swift\nimport FeaturesKit\n```\n\n### FKConfiguration\n\nThis is a struct containing all of the relevant details required to configure FeaturesKit. It can be created like so:\n\n```swift\nlet configuration = FKConfiguration(\n    title: \"What's New in Example App\", \n    items: items, \n    showContinueButton: true, \n    continueButtonTitle: \"Continue\",\n) {\n    print(\"Done\")\n}\n```\n\n### FKItem\n\nThis is a struct containing details relating to items that appear on the feature list screen. It can be created as follows:\n\n```swift\nlet item = FKItem(\n    title: \"New Feature\", \n    description: \"This is a cool new feature!\", \n    systemImage: \"checkmark.circle\", \n    imageTint: .green\n)\n```\n\nThe systemImage value is optional and will be hidden if a value is not provided. The imageTint value is also optional and will default to the accent color if not provided.\n\n### FeaturesView\n\nThe features view allows you to display a list of features that are available in your app with a custom title at the top. Create an instance of the view using the following:\n\n```swift\nFeaturesView(configuration: configuration)\n```\n\n## Other Packages\n\n### [AboutKit](https://github.com/adamfootdev/AboutKit)\n\nAdd an about screen to your app.\n\n### [HelpKit](https://github.com/adamfootdev/HelpKit)\n\nAdd a help screen to your app.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadamfootdev%2Ffeatureskit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadamfootdev%2Ffeatureskit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadamfootdev%2Ffeatureskit/lists"}