All Projects → 11Shraddha → Facebooklikereaction

11Shraddha / Facebooklikereaction

Licence: mit
FacebookLikeReaction is a customizable view which provides more options to share your reactions on any post like Facebook Reactions.

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Facebooklikereaction

Facebook
A Facebook Graph API SDK For Go.
Stars: ✭ 948 (+1796%)
Mutual labels:  facebook
Fbplus
FBplus.badge: alternative facebook badge for pages |
Stars: ✭ 36 (-28%)
Mutual labels:  facebook
Nemiro.oauth.dll
Nemiro.OAuth is a class library for authorization via OAuth protocol in .NET Framework
Stars: ✭ 45 (-10%)
Mutual labels:  facebook
Afb instant articles
allfacebook Instant Articles - The WordPress Plugin for facebook instant articles.
Stars: ✭ 31 (-38%)
Mutual labels:  facebook
Social Post Bundle
Symfony bundle to publish status updates on Facebook, LinkedIn and Twitter.
Stars: ✭ 35 (-30%)
Mutual labels:  facebook
Facebook Reactions Js
A simple & easy solution to add Facebook style "Like" button with reactions.
Stars: ✭ 42 (-16%)
Mutual labels:  facebook
Shrinktome
📘Shrink facebook by 5% every 10th second. You're welcome!
Stars: ✭ 15 (-70%)
Mutual labels:  facebook
Shellphish
Phishing Tool for 18 social media: Instagram, Facebook, Snapchat, Github, Twitter, Yahoo, Protonmail, Spotify, Netflix, Linkedin, Wordpress, Origin, Steam, Microsoft, InstaFollowers, Gitlab, Pinterest
Stars: ✭ 1,037 (+1974%)
Mutual labels:  facebook
React Native Swipeable Cards Demo
Facebook-style swipeable cards with React Native Interactable.
Stars: ✭ 36 (-28%)
Mutual labels:  facebook
Socialite
Socialite is an OAuth2 Authentication tool. It is inspired by laravel/socialite, you can easily use it without Laravel.
Stars: ✭ 1,026 (+1952%)
Mutual labels:  facebook
Nativescript Keyframes
Facebook Keyframes plugin - if CSS animations don't cut it for ya
Stars: ✭ 32 (-36%)
Mutual labels:  facebook
Feeds
Importiert Daten aus API-Quellen wie Facebook, Instagram, Twitter, YouTube, Vimeo oder RSS (ehemals YFeed)
Stars: ✭ 34 (-32%)
Mutual labels:  facebook
Docusaurus Docs Zh cn
facebook Docusaurus 文档的中文版本 , 目标版本 1.0.5
Stars: ✭ 43 (-14%)
Mutual labels:  facebook
Grain
The Entire History of You
Stars: ✭ 30 (-40%)
Mutual labels:  facebook
Fbbot
Minimal framework/SDK for facebook messenger bots. BYOS (Bring Your Own Server)
Stars: ✭ 46 (-8%)
Mutual labels:  facebook
Bootbot
Facebook Messenger Bot Framework for Node.js
Stars: ✭ 886 (+1672%)
Mutual labels:  facebook
Nativescript Plugin Firebase
🔥 NativeScript plugin for Firebase
Stars: ✭ 990 (+1880%)
Mutual labels:  facebook
Chatblocks
Declarative Messenger chatbot framework
Stars: ✭ 48 (-4%)
Mutual labels:  facebook
Furatto Rails Start Kit
A rails app with Furatto, Devise, and Facebook Authentication perfect for hackathons!
Stars: ✭ 46 (-8%)
Mutual labels:  facebook
Memedensity
CLI tool to let you know amount of memes in facebook feed.
Stars: ✭ 44 (-12%)
Mutual labels:  facebook

FacebookLikeReaction

CI Status Version License Platform

FacebookLikeReaction is a customizable view which provides more options to share your reactions on any post like Facebook Reactions.

alt tag

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

iOS 10.0+
Xcode 10.0+
Swift 4.2+

Installation

FacebookLikeReaction is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'FacebookLikeReaction'

Usage

class ViewController: UIViewController {

   override func viewDidLoad() {
       super.viewDidLoad()

        // Create a UIButton 
        var btnReaction = UIButton(frame: CGRect(x: 100, y: 300, width: 200, height: 30))
        btnReaction.setTitle("Long Press here", for: .normal)
        btnReaction.setTitleColor(UIColor.red, for: .normal)
        view.addSubview(btnReaction)

       var reactionView = ReactionView()
       let reactions: [Reaction] = [Reaction(title: "Laugh", imageName: "icn_laugh"),
                            Reaction(title: "Like", imageName: "icn_like"),
                            Reaction(title: "Angry", imageName: "icn_angry"),
                            Reaction(title: "Love", imageName: "icn_love"),
                            Reaction(title: "Sad", imageName: "icn_sad")]
        
        reactionView.initialize(delegate: self , reactionsArray: reactions, sourceView: self.view, gestureView: btnReaction)
    }
 }

//MARK: - FacebookLikeReactionDelegate
extension ViewController: FacebookLikeReactionDelegate {
    
    func selectedReaction(reaction: Reaction) {
        print("Selected-------\(reaction.title)")
    }
}

Author

11Shraddha, [email protected]

License

FacebookLikeReaction is available under the MIT license. See the LICENSE file for more info.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].