{"id":24733626,"url":"https://github.com/fanta1ty/tsnackbarview","last_synced_at":"2025-10-10T02:30:22.522Z","repository":{"id":56825298,"uuid":"526237156","full_name":"fanta1ty/TSnackBarView","owner":"fanta1ty","description":"TSnackBarView is a simple and flexible UI component fully written in Swift.  TSnackBarView helps you to show snackbar easily with 3 styles: normal, successful and error","archived":false,"fork":false,"pushed_at":"2022-08-18T14:14:40.000Z","size":265,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-16T19:50:33.325Z","etag":null,"topics":["cocoapods","framework","ios","ios10","snack","snackbar","swift","swift5","uikit","view"],"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/fanta1ty.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-08-18T14:05:39.000Z","updated_at":"2024-03-04T07:13:20.000Z","dependencies_parsed_at":"2022-09-09T04:22:51.868Z","dependency_job_id":null,"html_url":"https://github.com/fanta1ty/TSnackBarView","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/fanta1ty/TSnackBarView","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fanta1ty%2FTSnackBarView","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fanta1ty%2FTSnackBarView/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fanta1ty%2FTSnackBarView/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fanta1ty%2FTSnackBarView/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fanta1ty","download_url":"https://codeload.github.com/fanta1ty/TSnackBarView/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fanta1ty%2FTSnackBarView/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002542,"owners_count":26083400,"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","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["cocoapods","framework","ios","ios10","snack","snackbar","swift","swift5","uikit","view"],"created_at":"2025-01-27T18:17:25.470Z","updated_at":"2025-10-10T02:30:22.214Z","avatar_url":"https://github.com/fanta1ty.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"![LOGO](https://github.com/fanta1ty/TSnackBarView/blob/master/ScreenShot/Logo.png)\n\n# TSnackBarView\n\nTSnackBarView is a simple and flexible UI component fully written in Swift. \nTSnackBarView helps you to show snackbar easily with 3 styles: normal, successful and error\n\n[![Swift 5.0](https://img.shields.io/badge/Swift-5.0-brightgreen)](https://developer.apple.com/swift/)\n[![Version](https://img.shields.io/cocoapods/v/TSnackBarView.svg?style=flat)](https://cocoapods.org/pods/TSnackBarView)\n[![License](https://img.shields.io/cocoapods/l/TSnackBarView.svg?style=flat)](https://cocoapods.org/pods/TSnackBarView)\n[![Platform](https://img.shields.io/cocoapods/p/TSnackBarView.svg?style=flat)](https://cocoapods.org/pods/TSnackBarView)\n[![Email](https://img.shields.io/badge/contact-@thinhnguyen12389@gmail.com-blue)](thinhnguyen12389@gmail.com)\n\n## Example\n\nTo run the example project, clone the repo, and run `pod install` from the Example directory first.\n\n## Requirements\n\n## Installation\n\nTSnackBarView is available through [CocoaPods](https://cocoapods.org). To install\nit, simply add the following line to your Podfile:\n\n```ruby\npod 'TSnackBarView'\n```\n\n## Usage\n```swift\nimport TSnackBarView\n```\n\nTo show ``TSnackBarView`` with a normal message:\n```swift\nTSnackBarServiceImpl.shared.show(on: view,\n    message: \"Normal SnackBar View\\nPlease use Normal SnackBar View for displaying normal text message.\",\n    onTapCloseAction: { snackBarView in\n        snackBarView.dismiss()\n    })\n```\n\nTo show ``TSnackBarView`` with a successfull message:\n```swift\nTSnackBarServiceImpl.shared.show(on: view,\n    message: \"Success SnackBar View\\nPlease use Success SnackBar View for displaying success text message.\",\n    style: .success,\n    onTapCloseAction: { snackBarView in\n            snackBarView.dismiss()\n    })\n```\n\nTo show ``TSnackBarView`` with a error message:\n```swift\nTSnackBarServiceImpl.shared.show(on: view,\n    message: \"Error SnackBar View\\nPlease use Error SnackBar View for displaying error text message.\",\n    style: .error,\n    onTapCloseAction: { snackBarView in\n            snackBarView.dismiss()\n    })\n```\n\n![alt text](https://github.com/fanta1ty/TSnackBarView/blob/master/ScreenShot/demo.gif)\n\n## Requirements\n- iOS 10.0 or later\n- Swift 5.0 or later\n\n## Author\n\nfanta1ty, thinhnguyen12389@gmail.com\n\n## License\n\nTSnackBarView is available under the MIT license. See the LICENSE file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffanta1ty%2Ftsnackbarview","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffanta1ty%2Ftsnackbarview","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffanta1ty%2Ftsnackbarview/lists"}