{"id":19113786,"url":"https://github.com/mugbug/bricksandtiles","last_synced_at":"2025-04-30T22:15:55.639Z","repository":{"id":55897826,"uuid":"188741132","full_name":"mugbug/BricksAndTiles","owner":"mugbug","description":"🧱 A composable solution for building reusable lists in Swift/UIKit. As easy as playing with Legos.","archived":false,"fork":false,"pushed_at":"2020-10-31T17:56:32.000Z","size":29280,"stargazers_count":32,"open_issues_count":8,"forks_count":8,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-30T22:15:47.277Z","etag":null,"topics":["factory","hacktoberfest","reusable","swift","uicollectionview","uikit","uitableview"],"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/mugbug.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-05-26T23:22:02.000Z","updated_at":"2023-07-22T02:59:13.000Z","dependencies_parsed_at":"2022-08-15T09:00:19.094Z","dependency_job_id":null,"html_url":"https://github.com/mugbug/BricksAndTiles","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mugbug%2FBricksAndTiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mugbug%2FBricksAndTiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mugbug%2FBricksAndTiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mugbug%2FBricksAndTiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mugbug","download_url":"https://codeload.github.com/mugbug/BricksAndTiles/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251789627,"owners_count":21644087,"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":["factory","hacktoberfest","reusable","swift","uicollectionview","uikit","uitableview"],"created_at":"2024-11-09T04:39:01.797Z","updated_at":"2025-04-30T22:15:55.606Z","avatar_url":"https://github.com/mugbug.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"![stability-wip](https://img.shields.io/badge/stability-work_in_progress-lightgrey.svg) ![platforms](https://img.shields.io/badge/platforms-iOS-333333.svg) [![Swift Package Manager compatible](https://img.shields.io/badge/Swift%20Package%20Manager-compatible-brightgreen.svg)](https://github.com/apple/swift-package-manager)\n\n# BricksAndTiles\n\n🧱 A composable solution for building reusable lists in Swift/UIKit. As easy as playing with Legos.\n\n  - [Features](#features)\n    - [UITableView](#uitableview)\n    - [UICollectionView](#uicollectionview)\n    - [UITableView + UICollectionView](#uitableview--uicollectionview)\n  - [Installation](#installation)\n      - [Swift Package Manager](#swift-package-manager)\n      - [CocoaPods](#cocoapods)\n  - [Dependencies](#dependencies)\n  - [Contributing](#contributing)\n  - [Authors](#authors)\n\n## Features\n\n### UITableView\n- [x] Static cells\n- [x] Draggable cells\n\n![](demoAssets/draggable.gif)\n\n- [x] Cells with actions on slide\n\n![](demoAssets/slide_actions.gif)\n\n- [x] Single selection\n\n![](demoAssets/selectable.gif)\n\n### UICollectionView\n- [x] Static collection cells\n\n![](demoAssets/collection.gif)\n\n- [x] Grid collection cells\n\n![](demoAssets/grid.gif)\n\n### UITableView + UICollectionView\n- [x] Horizontal list cells\n\n![](demoAssets/horizontal_sliders.gif)\n\n## Installation\n\n_BricksAndTiles_ currently supports these installation options:\n\n#### Swift Package Manager\nThe [Swift Package Manager](https://swift.org/package-manager/) is a tool for automating the distribution of Swift code and is integrated into the swift compiler.\n\nOnce you have your Swift package set up, adding BricksAndTiles as a dependency is as easy as adding it to the dependencies value of your `Package.swift`.\n\n```swift\ndependencies: [\n    .package(\n        url: \"https://github.com/mugbug/BricksAndTiles.git\", \n        from: \"0.0.3\"\n    ),\n]\n```\n\nIf you're using SPM through Xcode:\n\n1. Go to `File \u003e Swift Packages \u003e Add Package Dependency` \n2. Enter https://github.com/mugbug/BricksAndTiles\n3. Choose a rule and submit.\n\n#### CocoaPods\n[CocoaPods](https://cocoapods.org) is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate BricksAndTiles into your Xcode project using CocoaPods, specify it in your Podfile:\n```ruby\npod 'BricksAndTiles', '0.0.3'\n```\n\nBricksAndTiles is also available as subspecs:\n- For only UITableView features:\n```ruby\npod 'BricksAndTiles/TableView', '0.0.3'\n```\n- For only UICollectionView features:\n```ruby\npod 'BricksAndTiles/CollectionView', '0.0.3'\n```\n\n## Dependencies\n\nThis package depends on [PaintAndBrush](https://github.com/mugbug/PaintAndBrush), which is a super lightweight package with helper extensions for building UIKit views in code.\n\n## Contributing\n\nAny kind of contributions would be highly appreciated! To start contributing, read the [Contributing Guideline](https://github.com/mugbug/BricksAndTiles/blob/master/CONTRIBUTING.md) for info on how to report issues, submit ideas and submit pull requests!\n\n## Authors\n\n- [@mugbug](https://github.com/mugbug)\n- [@emmendesf](https://github.com/emmendesf)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmugbug%2Fbricksandtiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmugbug%2Fbricksandtiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmugbug%2Fbricksandtiles/lists"}