{"id":18246442,"url":"https://github.com/11shraddha/facebooklikereaction","last_synced_at":"2025-07-22T20:35:14.624Z","repository":{"id":56911042,"uuid":"240446503","full_name":"11Shraddha/FacebookLikeReaction","owner":"11Shraddha","description":"FacebookLikeReaction is a customizable view which provides more options to share your reactions on any post like Facebook Reactions.","archived":false,"fork":false,"pushed_at":"2024-01-24T16:58:45.000Z","size":430,"stargazers_count":64,"open_issues_count":2,"forks_count":10,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-22T20:03:23.103Z","etag":null,"topics":["animation","animation-effects","facebook","facebook-animation","facebook-reaction","facebook-reactions","like-button","likebutton","likebuttonanimation","longpressdrag","reactions"],"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/11Shraddha.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-02-14T06:53:00.000Z","updated_at":"2025-05-30T06:44:34.000Z","dependencies_parsed_at":"2024-11-05T09:29:34.242Z","dependency_job_id":"39dfddef-afa2-42c3-90ae-e9b98486dd0d","html_url":"https://github.com/11Shraddha/FacebookLikeReaction","commit_stats":{"total_commits":8,"total_committers":2,"mean_commits":4.0,"dds":0.375,"last_synced_commit":"ff954106151d7cd1f38fef962c2c9e68efbc5e4a"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/11Shraddha/FacebookLikeReaction","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/11Shraddha%2FFacebookLikeReaction","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/11Shraddha%2FFacebookLikeReaction/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/11Shraddha%2FFacebookLikeReaction/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/11Shraddha%2FFacebookLikeReaction/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/11Shraddha","download_url":"https://codeload.github.com/11Shraddha/FacebookLikeReaction/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/11Shraddha%2FFacebookLikeReaction/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266567864,"owners_count":23949431,"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-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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":["animation","animation-effects","facebook","facebook-animation","facebook-reaction","facebook-reactions","like-button","likebutton","likebuttonanimation","longpressdrag","reactions"],"created_at":"2024-11-05T09:25:58.291Z","updated_at":"2025-07-22T20:35:14.598Z","avatar_url":"https://github.com/11Shraddha.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FacebookLikeReaction\n\n[![CI Status](https://img.shields.io/travis/11Shraddha/FacebookLikeReaction.svg?style=flat)](https://travis-ci.org/11Shraddha/FacebookLikeReaction)\n[![Version](https://img.shields.io/cocoapods/v/FacebookLikeReaction.svg?style=flat)](https://cocoapods.org/pods/FacebookLikeReaction)\n[![License](https://img.shields.io/cocoapods/l/FacebookLikeReaction.svg?style=flat)](https://cocoapods.org/pods/FacebookLikeReaction)\n[![Platform](https://img.shields.io/cocoapods/p/FacebookLikeReaction.svg?style=flat)](https://cocoapods.org/pods/FacebookLikeReaction)\n\nFacebookLikeReaction is a customizable view which provides more options to share your reactions on any post like Facebook Reactions.\n\n![alt tag](https://github.com/11Shraddha/FacebookLikeReaction/blob/master/ReactionDemo.gif)\n\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\niOS 10.0+    \nXcode 10.0+   \nSwift 4.2+     \n\n\n## Installation\n\nFacebookLikeReaction is available through [CocoaPods](https://cocoapods.org). To install\nit, simply add the following line to your Podfile:\n\n```ruby\npod 'FacebookLikeReaction'\n```\n## Usage\n\n```Swift\nclass ViewController: UIViewController {\n\n   override func viewDidLoad() {\n       super.viewDidLoad()\n\n        // Create a UIButton \n        var btnReaction = UIButton(frame: CGRect(x: 100, y: 300, width: 200, height: 30))\n        btnReaction.setTitle(\"Long Press here\", for: .normal)\n        btnReaction.setTitleColor(UIColor.red, for: .normal)\n        view.addSubview(btnReaction)\n\n       var reactionView = ReactionView()\n       let reactions: [Reaction] = [Reaction(title: \"Laugh\", imageName: \"icn_laugh\"),\n                            Reaction(title: \"Like\", imageName: \"icn_like\"),\n                            Reaction(title: \"Angry\", imageName: \"icn_angry\"),\n                            Reaction(title: \"Love\", imageName: \"icn_love\"),\n                            Reaction(title: \"Sad\", imageName: \"icn_sad\")]\n        \n        reactionView.initialize(delegate: self , reactionsArray: reactions, sourceView: self.view, gestureView: btnReaction)\n    }\n }\n\n//MARK: - FacebookLikeReactionDelegate\nextension ViewController: FacebookLikeReactionDelegate {\n    \n    func selectedReaction(reaction: Reaction) {\n        print(\"Selected-------\\(reaction.title)\")\n    }\n}\n```\n\n\n## Author\n\n11Shraddha, shraddhasojitra11@gmail.com\n\n## License\n\nFacebookLikeReaction 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%2F11shraddha%2Ffacebooklikereaction","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F11shraddha%2Ffacebooklikereaction","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F11shraddha%2Ffacebooklikereaction/lists"}