stipop_sdk 0.1.0 copy "stipop_sdk: ^0.1.0" to clipboard
stipop_sdk: ^0.1.0 copied to clipboard

outdated

Flutter Plugin for Stipop SDK

Flutter Plugin for Stipop UI SDK #

139039262-2fc7a0d2-d000-4848-b7be-eee2beede9f8 Stipop SDK provides over 150,000 .png and .gif stickers that can be easily integrated into mobile app chats, comment sections, live streams, video calls, and other features. Bring fun to your mobile app with stickers loved by millions of users worldwide.

Getting Started #

Install plugin and follow below steps.

Android Integration

  1. Sign up to Stipop Dashboard
  2. Create your application to get API Key.
  3. Download 'Stipop.json' file.
  4. Move Stipop.json into the assets folder. ('android/app/src/main/assets')
  5. Update gradle and add dependency.
// at project level build.gradle
allprojects {
  repositories {
    maven { url 'https://jitpack.io' }
  }
}
// at app level build.gradle
dependencies {
  implementation 'com.github.stipop-development:stipop-android-sdk:0.3.2' 
}

iOS Integration

  1. Sign up to Stipop Dashboard
  2. Create your application to get API Key.
  3. Download 'Stipop.plist' file.
  4. Open iOS module in Xcode
  5. Drag & Drop 'Stipop.plist' file into 'Runner' directory and import it.

For more information to install or customize, Please read below docs.

Stipop Android Docs

Stipop iOS Docs

Usage #

Show Search (Sticker Search View)

Search View is where users can search for stickers with search tags like happy, sad, what!, and more and find stickers they can send on chat.

Stipop().showSearch();

Show Keyboard (Sticker Picker View on Keyboard)

Sticker Picker View provides in-depth sticker experience. Instead of instantaneous usage from the Search View, users can download and own stickers for a more intimate sticker sending experience.

Stipop().showKeyboard();

This method will hide 'Sticker Picker VIew', if it is currently showing.

Stipop().hideKeyboard();

Implement Sticker Send (Listening sticker, sticker pack selection event)

You might call this method at like 'initState()'.

Stipop(
    onStickerPackSelected: (spPackage) {
      // do something with sticker pack
    },
    onStickerSelected: (spSticker) {        
      // do something with sticker
    },
);

Contact us #

10
likes
0
pub points
26%
popularity

Publisher

unverified uploader

Flutter Plugin for Stipop SDK

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, json_annotation, json_serializable

More

Packages that depend on stipop_sdk