├── .gitignore ├── .metadata ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── noorisofttech │ │ │ │ └── trendy_stickers │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets └── logo.png ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── main.m ├── lib ├── components │ └── ReusableImage.dart ├── main.dart ├── modals │ ├── InstallStickersModal.dart │ └── StickerListModal.dart ├── screens │ ├── HomeScreen.dart │ ├── SplashScreen.dart │ ├── StickerList.dart │ └── StickerPackInformation.dart └── utils │ └── utils.dart ├── pubspec.lock ├── pubspec.yaml └── sticker_packs ├── 1 ├── 1.webp ├── 10.webp ├── 11.webp ├── 12.webp ├── 13.webp ├── 14.webp ├── 15.webp ├── 16.webp ├── 17.webp ├── 2.webp ├── 3.webp ├── 4.webp ├── 5.webp ├── 6.webp ├── 7.webp ├── 8.webp └── 9.webp ├── 2 ├── 1.webp ├── 10.webp ├── 11.webp ├── 12.webp ├── 13.webp ├── 14.webp ├── 15.webp ├── 16.webp ├── 17.webp ├── 18.webp ├── 19.webp ├── 2.webp ├── 20.webp ├── 21.webp ├── 22.webp ├── 23.webp ├── 24.webp ├── 25.webp ├── 26.webp ├── 27.webp ├── 28.webp ├── 29.webp ├── 3.webp ├── 30.webp ├── 4.webp ├── 5.webp ├── 6.webp ├── 7.webp ├── 8.webp └── 9.webp ├── 3 ├── 1.webp ├── 10.webp ├── 11.webp ├── 12.webp ├── 13.webp ├── 14.webp ├── 15.webp ├── 16.webp ├── 17.webp ├── 18.webp ├── 19.webp ├── 2.webp ├── 3.webp ├── 4.webp ├── 5.webp ├── 6.webp ├── 7.webp ├── 8.webp └── 9.webp ├── 4 ├── 1.webp ├── 10.webp ├── 11.webp ├── 12.webp ├── 13.webp ├── 14.webp ├── 15.webp ├── 16.webp ├── 17.webp ├── 18.webp ├── 19.webp ├── 2.webp ├── 20.webp ├── 3.webp ├── 4.webp ├── 5.webp ├── 6.webp ├── 7.webp ├── 8.webp └── 9.webp ├── 5 ├── 1.webp ├── 10.webp ├── 11.webp ├── 12.webp ├── 13.webp ├── 14.webp ├── 15.webp ├── 16.webp ├── 2.webp ├── 3.webp ├── 4.webp ├── 5.webp ├── 6.webp ├── 7.webp ├── 8.webp └── 9.webp ├── 6 ├── 1.webp ├── 10.webp ├── 11.webp ├── 12.webp ├── 13.webp ├── 14.webp ├── 15.webp ├── 16.webp ├── 17.webp ├── 18.webp ├── 19.webp ├── 2.webp ├── 20.webp ├── 21.webp ├── 22.webp ├── 23.webp ├── 24.webp ├── 25.webp ├── 26.webp ├── 27.webp ├── 28.webp ├── 29.webp ├── 3.webp ├── 30.webp ├── 4.webp ├── 5.webp ├── 6.webp ├── 7.webp ├── 8.webp └── 9.webp └── sticker_packs.json /.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.log 4 | *.pyc 5 | *.swp 6 | .DS_Store 7 | .atom/ 8 | .buildlog/ 9 | .history 10 | .svn/ 11 | 12 | # IntelliJ related 13 | *.iml 14 | *.ipr 15 | *.iws 16 | .idea/ 17 | 18 | # The .vscode folder contains launch configuration and tasks you configure in 19 | # VS Code which you may wish to be included in version control, so this line 20 | # is commented out by default. 21 | #.vscode/ 22 | 23 | # Flutter/Dart/Pub related 24 | **/doc/api/ 25 | **/ios/Flutter/.last_build_id 26 | .dart_tool/ 27 | .flutter-plugins 28 | .flutter-plugins-dependencies 29 | .packages 30 | .pub-cache/ 31 | .pub/ 32 | /build/ 33 | 34 | # Web related 35 | lib/generated_plugin_registrant.dart 36 | 37 | # Symbolication related 38 | app.*.symbols 39 | 40 | # Obfuscation related 41 | app.*.map.json 42 | -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: 84f3d28555368a70270e9ac8390a9441df95e752 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Trendy Stickers - Flutter 2 | 3 | Whatsapp Stickers app using flutter 4 | 5 | ## ScreenShots: 6 | 7 | 8 | 9 | ### Our Apps: 10 | https://play.google.com/store/apps/developer?id=Noori+Softtech 11 | 12 | -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | 9 | # Remember to never publicly share your keystore. 10 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app 11 | key.properties 12 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | def localProperties = new Properties() 2 | def localPropertiesFile = rootProject.file('local.properties') 3 | if (localPropertiesFile.exists()) { 4 | localPropertiesFile.withReader('UTF-8') { reader -> 5 | localProperties.load(reader) 6 | } 7 | } 8 | 9 | def flutterRoot = localProperties.getProperty('flutter.sdk') 10 | if (flutterRoot == null) { 11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") 12 | } 13 | 14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode') 15 | if (flutterVersionCode == null) { 16 | flutterVersionCode = '1' 17 | } 18 | 19 | def flutterVersionName = localProperties.getProperty('flutter.versionName') 20 | if (flutterVersionName == null) { 21 | flutterVersionName = '1.0' 22 | } 23 | 24 | def keystoreProperties = new Properties() 25 | def keystorePropertiesFile = rootProject.file('key.properties') 26 | if (keystorePropertiesFile.exists()) { 27 | keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) 28 | } 29 | 30 | apply plugin: 'com.android.application' 31 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 32 | 33 | android { 34 | aaptOptions { 35 | noCompress "webp" 36 | } 37 | } 38 | 39 | android { 40 | compileSdkVersion 30 41 | 42 | lintOptions { 43 | disable 'InvalidPackage' 44 | } 45 | 46 | defaultConfig { 47 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 48 | applicationId "com.noorisofttech.trendy_stickers" 49 | minSdkVersion 21 50 | targetSdkVersion 30 51 | versionCode flutterVersionCode.toInteger() 52 | versionName flutterVersionName 53 | } 54 | 55 | signingConfigs { 56 | release { 57 | keyAlias keystoreProperties['keyAlias'] 58 | keyPassword keystoreProperties['keyPassword'] 59 | storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null 60 | storePassword keystoreProperties['storePassword'] 61 | } 62 | } 63 | 64 | buildTypes { 65 | release { 66 | signingConfig signingConfigs.release 67 | } 68 | } 69 | } 70 | 71 | flutter { 72 | source '../..' 73 | } -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 8 | 12 | 19 | 23 | 27 | 32 | 36 | 37 | 38 | 39 | 40 | 41 | 43 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/noorisofttech/trendy_stickers/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.noorisofttech.trendy_stickers; 2 | 3 | import io.flutter.embedding.android.FlutterActivity; 4 | 5 | public class MainActivity extends FlutterActivity { 6 | } 7 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | google() 4 | jcenter() 5 | } 6 | 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:3.5.0' 9 | } 10 | } 11 | 12 | allprojects { 13 | repositories { 14 | google() 15 | jcenter() 16 | } 17 | } 18 | 19 | rootProject.buildDir = '../build' 20 | subprojects { 21 | project.buildDir = "${rootProject.buildDir}/${project.name}" 22 | } 23 | subprojects { 24 | project.evaluationDependsOn(':app') 25 | } 26 | 27 | task clean(type: Delete) { 28 | delete rootProject.buildDir 29 | } 30 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | android.enableR8=true 5 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def localPropertiesFile = new File(rootProject.projectDir, "local.properties") 4 | def properties = new Properties() 5 | 6 | assert localPropertiesFile.exists() 7 | localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } 8 | 9 | def flutterSdkPath = properties.getProperty("flutter.sdk") 10 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties" 11 | apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" 12 | -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/assets/logo.png -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- 1 | *.mode1v3 2 | *.mode2v3 3 | *.moved-aside 4 | *.pbxuser 5 | *.perspectivev3 6 | **/*sync/ 7 | .sconsign.dblite 8 | .tags* 9 | **/.vagrant/ 10 | **/DerivedData/ 11 | Icon? 12 | **/Pods/ 13 | **/.symlinks/ 14 | profile 15 | xcuserdata 16 | **/.generated/ 17 | Flutter/App.framework 18 | Flutter/Flutter.framework 19 | Flutter/Flutter.podspec 20 | Flutter/Generated.xcconfig 21 | Flutter/app.flx 22 | Flutter/app.zip 23 | Flutter/flutter_assets/ 24 | Flutter/flutter_export_environment.sh 25 | ServiceDefinitions.json 26 | Runner/GeneratedPluginRegistrant.* 27 | 28 | # Exceptions to above rules. 29 | !default.mode1v3 30 | !default.mode2v3 31 | !default.pbxuser 32 | !default.perspectivev3 33 | -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | App 9 | CFBundleIdentifier 10 | io.flutter.flutter.app 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | App 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | MinimumOSVersion 24 | 9.0 25 | 26 | 27 | -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; 11 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; 12 | 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */; }; 13 | 97C146F31CF9000F007C117D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C146F21CF9000F007C117D /* main.m */; }; 14 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 15 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 16 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 17 | /* End PBXBuildFile section */ 18 | 19 | /* Begin PBXCopyFilesBuildPhase section */ 20 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = { 21 | isa = PBXCopyFilesBuildPhase; 22 | buildActionMask = 2147483647; 23 | dstPath = ""; 24 | dstSubfolderSpec = 10; 25 | files = ( 26 | ); 27 | name = "Embed Frameworks"; 28 | runOnlyForDeploymentPostprocessing = 0; 29 | }; 30 | /* End PBXCopyFilesBuildPhase section */ 31 | 32 | /* Begin PBXFileReference section */ 33 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 34 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 35 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 36 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 37 | 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 38 | 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 39 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 40 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 41 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 42 | 97C146F21CF9000F007C117D /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 43 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 44 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 45 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 46 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 47 | /* End PBXFileReference section */ 48 | 49 | /* Begin PBXFrameworksBuildPhase section */ 50 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 51 | isa = PBXFrameworksBuildPhase; 52 | buildActionMask = 2147483647; 53 | files = ( 54 | ); 55 | runOnlyForDeploymentPostprocessing = 0; 56 | }; 57 | /* End PBXFrameworksBuildPhase section */ 58 | 59 | /* Begin PBXGroup section */ 60 | 9740EEB11CF90186004384FC /* Flutter */ = { 61 | isa = PBXGroup; 62 | children = ( 63 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 64 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 65 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 66 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 67 | ); 68 | name = Flutter; 69 | sourceTree = ""; 70 | }; 71 | 97C146E51CF9000F007C117D = { 72 | isa = PBXGroup; 73 | children = ( 74 | 9740EEB11CF90186004384FC /* Flutter */, 75 | 97C146F01CF9000F007C117D /* Runner */, 76 | 97C146EF1CF9000F007C117D /* Products */, 77 | CF3B75C9A7D2FA2A4C99F110 /* Frameworks */, 78 | ); 79 | sourceTree = ""; 80 | }; 81 | 97C146EF1CF9000F007C117D /* Products */ = { 82 | isa = PBXGroup; 83 | children = ( 84 | 97C146EE1CF9000F007C117D /* Runner.app */, 85 | ); 86 | name = Products; 87 | sourceTree = ""; 88 | }; 89 | 97C146F01CF9000F007C117D /* Runner */ = { 90 | isa = PBXGroup; 91 | children = ( 92 | 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */, 93 | 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */, 94 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 95 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 96 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 97 | 97C147021CF9000F007C117D /* Info.plist */, 98 | 97C146F11CF9000F007C117D /* Supporting Files */, 99 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 100 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 101 | ); 102 | path = Runner; 103 | sourceTree = ""; 104 | }; 105 | 97C146F11CF9000F007C117D /* Supporting Files */ = { 106 | isa = PBXGroup; 107 | children = ( 108 | 97C146F21CF9000F007C117D /* main.m */, 109 | ); 110 | name = "Supporting Files"; 111 | sourceTree = ""; 112 | }; 113 | /* End PBXGroup section */ 114 | 115 | /* Begin PBXNativeTarget section */ 116 | 97C146ED1CF9000F007C117D /* Runner */ = { 117 | isa = PBXNativeTarget; 118 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 119 | buildPhases = ( 120 | 9740EEB61CF901F6004384FC /* Run Script */, 121 | 97C146EA1CF9000F007C117D /* Sources */, 122 | 97C146EB1CF9000F007C117D /* Frameworks */, 123 | 97C146EC1CF9000F007C117D /* Resources */, 124 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 125 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 126 | ); 127 | buildRules = ( 128 | ); 129 | dependencies = ( 130 | ); 131 | name = Runner; 132 | productName = Runner; 133 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 134 | productType = "com.apple.product-type.application"; 135 | }; 136 | /* End PBXNativeTarget section */ 137 | 138 | /* Begin PBXProject section */ 139 | 97C146E61CF9000F007C117D /* Project object */ = { 140 | isa = PBXProject; 141 | attributes = { 142 | LastUpgradeCheck = 1020; 143 | ORGANIZATIONNAME = ""; 144 | TargetAttributes = { 145 | 97C146ED1CF9000F007C117D = { 146 | CreatedOnToolsVersion = 7.3.1; 147 | }; 148 | }; 149 | }; 150 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 151 | compatibilityVersion = "Xcode 9.3"; 152 | developmentRegion = en; 153 | hasScannedForEncodings = 0; 154 | knownRegions = ( 155 | en, 156 | Base, 157 | ); 158 | mainGroup = 97C146E51CF9000F007C117D; 159 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 160 | projectDirPath = ""; 161 | projectRoot = ""; 162 | targets = ( 163 | 97C146ED1CF9000F007C117D /* Runner */, 164 | ); 165 | }; 166 | /* End PBXProject section */ 167 | 168 | /* Begin PBXResourcesBuildPhase section */ 169 | 97C146EC1CF9000F007C117D /* Resources */ = { 170 | isa = PBXResourcesBuildPhase; 171 | buildActionMask = 2147483647; 172 | files = ( 173 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 174 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 175 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 176 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 177 | ); 178 | runOnlyForDeploymentPostprocessing = 0; 179 | }; 180 | /* End PBXResourcesBuildPhase section */ 181 | 182 | /* Begin PBXShellScriptBuildPhase section */ 183 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 184 | isa = PBXShellScriptBuildPhase; 185 | buildActionMask = 2147483647; 186 | files = ( 187 | ); 188 | inputPaths = ( 189 | ); 190 | name = "Thin Binary"; 191 | outputPaths = ( 192 | ); 193 | runOnlyForDeploymentPostprocessing = 0; 194 | shellPath = /bin/sh; 195 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; 196 | }; 197 | 9740EEB61CF901F6004384FC /* Run Script */ = { 198 | isa = PBXShellScriptBuildPhase; 199 | buildActionMask = 2147483647; 200 | files = ( 201 | ); 202 | inputPaths = ( 203 | ); 204 | name = "Run Script"; 205 | outputPaths = ( 206 | ); 207 | runOnlyForDeploymentPostprocessing = 0; 208 | shellPath = /bin/sh; 209 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 210 | }; 211 | /* End PBXShellScriptBuildPhase section */ 212 | 213 | /* Begin PBXSourcesBuildPhase section */ 214 | 97C146EA1CF9000F007C117D /* Sources */ = { 215 | isa = PBXSourcesBuildPhase; 216 | buildActionMask = 2147483647; 217 | files = ( 218 | 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */, 219 | 97C146F31CF9000F007C117D /* main.m in Sources */, 220 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 221 | ); 222 | runOnlyForDeploymentPostprocessing = 0; 223 | }; 224 | /* End PBXSourcesBuildPhase section */ 225 | 226 | /* Begin PBXVariantGroup section */ 227 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 228 | isa = PBXVariantGroup; 229 | children = ( 230 | 97C146FB1CF9000F007C117D /* Base */, 231 | ); 232 | name = Main.storyboard; 233 | sourceTree = ""; 234 | }; 235 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 236 | isa = PBXVariantGroup; 237 | children = ( 238 | 97C147001CF9000F007C117D /* Base */, 239 | ); 240 | name = LaunchScreen.storyboard; 241 | sourceTree = ""; 242 | }; 243 | /* End PBXVariantGroup section */ 244 | 245 | /* Begin XCBuildConfiguration section */ 246 | 249021D3217E4FDB00AE95B9 /* Profile */ = { 247 | isa = XCBuildConfiguration; 248 | buildSettings = { 249 | ALWAYS_SEARCH_USER_PATHS = NO; 250 | CLANG_ANALYZER_NONNULL = YES; 251 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 252 | CLANG_CXX_LIBRARY = "libc++"; 253 | CLANG_ENABLE_MODULES = YES; 254 | CLANG_ENABLE_OBJC_ARC = YES; 255 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 256 | CLANG_WARN_BOOL_CONVERSION = YES; 257 | CLANG_WARN_COMMA = YES; 258 | CLANG_WARN_CONSTANT_CONVERSION = YES; 259 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 260 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 261 | CLANG_WARN_EMPTY_BODY = YES; 262 | CLANG_WARN_ENUM_CONVERSION = YES; 263 | CLANG_WARN_INFINITE_RECURSION = YES; 264 | CLANG_WARN_INT_CONVERSION = YES; 265 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 266 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 267 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 268 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 269 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 270 | CLANG_WARN_STRICT_PROTOTYPES = YES; 271 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 272 | CLANG_WARN_UNREACHABLE_CODE = YES; 273 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 274 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 275 | COPY_PHASE_STRIP = NO; 276 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 277 | ENABLE_NS_ASSERTIONS = NO; 278 | ENABLE_STRICT_OBJC_MSGSEND = YES; 279 | GCC_C_LANGUAGE_STANDARD = gnu99; 280 | GCC_NO_COMMON_BLOCKS = YES; 281 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 282 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 283 | GCC_WARN_UNDECLARED_SELECTOR = YES; 284 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 285 | GCC_WARN_UNUSED_FUNCTION = YES; 286 | GCC_WARN_UNUSED_VARIABLE = YES; 287 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 288 | MTL_ENABLE_DEBUG_INFO = NO; 289 | SDKROOT = iphoneos; 290 | SUPPORTED_PLATFORMS = iphoneos; 291 | TARGETED_DEVICE_FAMILY = "1,2"; 292 | VALIDATE_PRODUCT = YES; 293 | }; 294 | name = Profile; 295 | }; 296 | 249021D4217E4FDB00AE95B9 /* Profile */ = { 297 | isa = XCBuildConfiguration; 298 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 299 | buildSettings = { 300 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 301 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 302 | ENABLE_BITCODE = NO; 303 | FRAMEWORK_SEARCH_PATHS = ( 304 | "$(inherited)", 305 | "$(PROJECT_DIR)/Flutter", 306 | ); 307 | INFOPLIST_FILE = Runner/Info.plist; 308 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 309 | LIBRARY_SEARCH_PATHS = ( 310 | "$(inherited)", 311 | "$(PROJECT_DIR)/Flutter", 312 | ); 313 | PRODUCT_BUNDLE_IDENTIFIER = com.noorisofttech.trendyStickers; 314 | PRODUCT_NAME = "$(TARGET_NAME)"; 315 | VERSIONING_SYSTEM = "apple-generic"; 316 | }; 317 | name = Profile; 318 | }; 319 | 97C147031CF9000F007C117D /* Debug */ = { 320 | isa = XCBuildConfiguration; 321 | buildSettings = { 322 | ALWAYS_SEARCH_USER_PATHS = NO; 323 | CLANG_ANALYZER_NONNULL = YES; 324 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 325 | CLANG_CXX_LIBRARY = "libc++"; 326 | CLANG_ENABLE_MODULES = YES; 327 | CLANG_ENABLE_OBJC_ARC = YES; 328 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 329 | CLANG_WARN_BOOL_CONVERSION = YES; 330 | CLANG_WARN_COMMA = YES; 331 | CLANG_WARN_CONSTANT_CONVERSION = YES; 332 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 333 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 334 | CLANG_WARN_EMPTY_BODY = YES; 335 | CLANG_WARN_ENUM_CONVERSION = YES; 336 | CLANG_WARN_INFINITE_RECURSION = YES; 337 | CLANG_WARN_INT_CONVERSION = YES; 338 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 339 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 340 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 341 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 342 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 343 | CLANG_WARN_STRICT_PROTOTYPES = YES; 344 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 345 | CLANG_WARN_UNREACHABLE_CODE = YES; 346 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 347 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 348 | COPY_PHASE_STRIP = NO; 349 | DEBUG_INFORMATION_FORMAT = dwarf; 350 | ENABLE_STRICT_OBJC_MSGSEND = YES; 351 | ENABLE_TESTABILITY = YES; 352 | GCC_C_LANGUAGE_STANDARD = gnu99; 353 | GCC_DYNAMIC_NO_PIC = NO; 354 | GCC_NO_COMMON_BLOCKS = YES; 355 | GCC_OPTIMIZATION_LEVEL = 0; 356 | GCC_PREPROCESSOR_DEFINITIONS = ( 357 | "DEBUG=1", 358 | "$(inherited)", 359 | ); 360 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 361 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 362 | GCC_WARN_UNDECLARED_SELECTOR = YES; 363 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 364 | GCC_WARN_UNUSED_FUNCTION = YES; 365 | GCC_WARN_UNUSED_VARIABLE = YES; 366 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 367 | MTL_ENABLE_DEBUG_INFO = YES; 368 | ONLY_ACTIVE_ARCH = YES; 369 | SDKROOT = iphoneos; 370 | TARGETED_DEVICE_FAMILY = "1,2"; 371 | }; 372 | name = Debug; 373 | }; 374 | 97C147041CF9000F007C117D /* Release */ = { 375 | isa = XCBuildConfiguration; 376 | buildSettings = { 377 | ALWAYS_SEARCH_USER_PATHS = NO; 378 | CLANG_ANALYZER_NONNULL = YES; 379 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 380 | CLANG_CXX_LIBRARY = "libc++"; 381 | CLANG_ENABLE_MODULES = YES; 382 | CLANG_ENABLE_OBJC_ARC = YES; 383 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 384 | CLANG_WARN_BOOL_CONVERSION = YES; 385 | CLANG_WARN_COMMA = YES; 386 | CLANG_WARN_CONSTANT_CONVERSION = YES; 387 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 388 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 389 | CLANG_WARN_EMPTY_BODY = YES; 390 | CLANG_WARN_ENUM_CONVERSION = YES; 391 | CLANG_WARN_INFINITE_RECURSION = YES; 392 | CLANG_WARN_INT_CONVERSION = YES; 393 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 394 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 395 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 396 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 397 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 398 | CLANG_WARN_STRICT_PROTOTYPES = YES; 399 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 400 | CLANG_WARN_UNREACHABLE_CODE = YES; 401 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 402 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 403 | COPY_PHASE_STRIP = NO; 404 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 405 | ENABLE_NS_ASSERTIONS = NO; 406 | ENABLE_STRICT_OBJC_MSGSEND = YES; 407 | GCC_C_LANGUAGE_STANDARD = gnu99; 408 | GCC_NO_COMMON_BLOCKS = YES; 409 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 410 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 411 | GCC_WARN_UNDECLARED_SELECTOR = YES; 412 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 413 | GCC_WARN_UNUSED_FUNCTION = YES; 414 | GCC_WARN_UNUSED_VARIABLE = YES; 415 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 416 | MTL_ENABLE_DEBUG_INFO = NO; 417 | SDKROOT = iphoneos; 418 | SUPPORTED_PLATFORMS = iphoneos; 419 | TARGETED_DEVICE_FAMILY = "1,2"; 420 | VALIDATE_PRODUCT = YES; 421 | }; 422 | name = Release; 423 | }; 424 | 97C147061CF9000F007C117D /* Debug */ = { 425 | isa = XCBuildConfiguration; 426 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 427 | buildSettings = { 428 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 429 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 430 | ENABLE_BITCODE = NO; 431 | FRAMEWORK_SEARCH_PATHS = ( 432 | "$(inherited)", 433 | "$(PROJECT_DIR)/Flutter", 434 | ); 435 | INFOPLIST_FILE = Runner/Info.plist; 436 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 437 | LIBRARY_SEARCH_PATHS = ( 438 | "$(inherited)", 439 | "$(PROJECT_DIR)/Flutter", 440 | ); 441 | PRODUCT_BUNDLE_IDENTIFIER = com.noorisofttech.trendyStickers; 442 | PRODUCT_NAME = "$(TARGET_NAME)"; 443 | VERSIONING_SYSTEM = "apple-generic"; 444 | }; 445 | name = Debug; 446 | }; 447 | 97C147071CF9000F007C117D /* Release */ = { 448 | isa = XCBuildConfiguration; 449 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 450 | buildSettings = { 451 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 452 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 453 | ENABLE_BITCODE = NO; 454 | FRAMEWORK_SEARCH_PATHS = ( 455 | "$(inherited)", 456 | "$(PROJECT_DIR)/Flutter", 457 | ); 458 | INFOPLIST_FILE = Runner/Info.plist; 459 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 460 | LIBRARY_SEARCH_PATHS = ( 461 | "$(inherited)", 462 | "$(PROJECT_DIR)/Flutter", 463 | ); 464 | PRODUCT_BUNDLE_IDENTIFIER = com.noorisofttech.trendyStickers; 465 | PRODUCT_NAME = "$(TARGET_NAME)"; 466 | VERSIONING_SYSTEM = "apple-generic"; 467 | }; 468 | name = Release; 469 | }; 470 | /* End XCBuildConfiguration section */ 471 | 472 | /* Begin XCConfigurationList section */ 473 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 474 | isa = XCConfigurationList; 475 | buildConfigurations = ( 476 | 97C147031CF9000F007C117D /* Debug */, 477 | 97C147041CF9000F007C117D /* Release */, 478 | 249021D3217E4FDB00AE95B9 /* Profile */, 479 | ); 480 | defaultConfigurationIsVisible = 0; 481 | defaultConfigurationName = Release; 482 | }; 483 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 484 | isa = XCConfigurationList; 485 | buildConfigurations = ( 486 | 97C147061CF9000F007C117D /* Debug */, 487 | 97C147071CF9000F007C117D /* Release */, 488 | 249021D4217E4FDB00AE95B9 /* Profile */, 489 | ); 490 | defaultConfigurationIsVisible = 0; 491 | defaultConfigurationName = Release; 492 | }; 493 | /* End XCConfigurationList section */ 494 | }; 495 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 496 | } 497 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 39 | 40 | 41 | 42 | 43 | 44 | 54 | 56 | 62 | 63 | 64 | 65 | 66 | 67 | 73 | 75 | 81 | 82 | 83 | 84 | 86 | 87 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- 1 | #import "AppDelegate.h" 2 | #import "GeneratedPluginRegistrant.h" 3 | 4 | @implementation AppDelegate 5 | 6 | - (BOOL)application:(UIApplication *)application 7 | didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 8 | [GeneratedPluginRegistrant registerWithRegistry:self]; 9 | // Override point for customization after application launch. 10 | return [super application:application didFinishLaunchingWithOptions:launchOptions]; 11 | } 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "20x20", 5 | "idiom" : "iphone", 6 | "filename" : "Icon-App-20x20@2x.png", 7 | "scale" : "2x" 8 | }, 9 | { 10 | "size" : "20x20", 11 | "idiom" : "iphone", 12 | "filename" : "Icon-App-20x20@3x.png", 13 | "scale" : "3x" 14 | }, 15 | { 16 | "size" : "29x29", 17 | "idiom" : "iphone", 18 | "filename" : "Icon-App-29x29@1x.png", 19 | "scale" : "1x" 20 | }, 21 | { 22 | "size" : "29x29", 23 | "idiom" : "iphone", 24 | "filename" : "Icon-App-29x29@2x.png", 25 | "scale" : "2x" 26 | }, 27 | { 28 | "size" : "29x29", 29 | "idiom" : "iphone", 30 | "filename" : "Icon-App-29x29@3x.png", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "size" : "40x40", 35 | "idiom" : "iphone", 36 | "filename" : "Icon-App-40x40@2x.png", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "size" : "40x40", 41 | "idiom" : "iphone", 42 | "filename" : "Icon-App-40x40@3x.png", 43 | "scale" : "3x" 44 | }, 45 | { 46 | "size" : "60x60", 47 | "idiom" : "iphone", 48 | "filename" : "Icon-App-60x60@2x.png", 49 | "scale" : "2x" 50 | }, 51 | { 52 | "size" : "60x60", 53 | "idiom" : "iphone", 54 | "filename" : "Icon-App-60x60@3x.png", 55 | "scale" : "3x" 56 | }, 57 | { 58 | "size" : "20x20", 59 | "idiom" : "ipad", 60 | "filename" : "Icon-App-20x20@1x.png", 61 | "scale" : "1x" 62 | }, 63 | { 64 | "size" : "20x20", 65 | "idiom" : "ipad", 66 | "filename" : "Icon-App-20x20@2x.png", 67 | "scale" : "2x" 68 | }, 69 | { 70 | "size" : "29x29", 71 | "idiom" : "ipad", 72 | "filename" : "Icon-App-29x29@1x.png", 73 | "scale" : "1x" 74 | }, 75 | { 76 | "size" : "29x29", 77 | "idiom" : "ipad", 78 | "filename" : "Icon-App-29x29@2x.png", 79 | "scale" : "2x" 80 | }, 81 | { 82 | "size" : "40x40", 83 | "idiom" : "ipad", 84 | "filename" : "Icon-App-40x40@1x.png", 85 | "scale" : "1x" 86 | }, 87 | { 88 | "size" : "40x40", 89 | "idiom" : "ipad", 90 | "filename" : "Icon-App-40x40@2x.png", 91 | "scale" : "2x" 92 | }, 93 | { 94 | "size" : "76x76", 95 | "idiom" : "ipad", 96 | "filename" : "Icon-App-76x76@1x.png", 97 | "scale" : "1x" 98 | }, 99 | { 100 | "size" : "76x76", 101 | "idiom" : "ipad", 102 | "filename" : "Icon-App-76x76@2x.png", 103 | "scale" : "2x" 104 | }, 105 | { 106 | "size" : "83.5x83.5", 107 | "idiom" : "ipad", 108 | "filename" : "Icon-App-83.5x83.5@2x.png", 109 | "scale" : "2x" 110 | }, 111 | { 112 | "size" : "1024x1024", 113 | "idiom" : "ios-marketing", 114 | "filename" : "Icon-App-1024x1024@1x.png", 115 | "scale" : "1x" 116 | } 117 | ], 118 | "info" : { 119 | "version" : 1, 120 | "author" : "xcode" 121 | } 122 | } 123 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchImage.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchImage@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "LaunchImage@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | trendy_stickers 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | $(FLUTTER_BUILD_NAME) 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | $(FLUTTER_BUILD_NUMBER) 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UISupportedInterfaceOrientations 30 | 31 | UIInterfaceOrientationPortrait 32 | UIInterfaceOrientationLandscapeLeft 33 | UIInterfaceOrientationLandscapeRight 34 | 35 | UISupportedInterfaceOrientations~ipad 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationPortraitUpsideDown 39 | UIInterfaceOrientationLandscapeLeft 40 | UIInterfaceOrientationLandscapeRight 41 | 42 | UIViewControllerBasedStatusBarAppearance 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /ios/Runner/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char* argv[]) { 6 | @autoreleasepool { 7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /lib/components/ReusableImage.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class ReusableImage extends StatelessWidget { 4 | 5 | final String imagePath; 6 | ReusableImage({this.imagePath}); 7 | 8 | @override 9 | Widget build(BuildContext context) { 10 | return Expanded( 11 | child: Image.asset( 12 | imagePath, 13 | ), 14 | ); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:provider/provider.dart'; 3 | import 'package:trendy_stickers/modals/InstallStickersModal.dart'; 4 | import 'package:trendy_stickers/modals/StickerListModal.dart'; 5 | import 'package:trendy_stickers/screens/SplashScreen.dart'; 6 | 7 | void main() { 8 | runApp(MyApp()); 9 | } 10 | 11 | class MyApp extends StatelessWidget { 12 | @override 13 | Widget build(BuildContext context) { 14 | return MultiProvider( 15 | providers: [ 16 | ChangeNotifierProvider(create: (_) => StickerListModel()), 17 | ChangeNotifierProvider(create: (_) => InstallStickersModal()), 18 | ], 19 | child: MaterialApp( 20 | debugShowCheckedModeBanner: false, 21 | title: 'Trendy Stickers - Whatsapp Stickers', 22 | theme: ThemeData( 23 | primaryColor: Colors.green, 24 | visualDensity: VisualDensity.adaptivePlatformDensity, 25 | ), 26 | home: SplashScreen(), 27 | ), 28 | ); 29 | } 30 | } -------------------------------------------------------------------------------- /lib/modals/InstallStickersModal.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class InstallStickersModal extends ChangeNotifier{ 4 | 5 | List _installedStickers = new List(); 6 | 7 | int get installedStickersSize => _installedStickers.length; 8 | 9 | List get installStickers => _installedStickers; 10 | 11 | void add(dynamic tempName){ 12 | _installedStickers.add(tempName); 13 | notifyListeners(); 14 | } 15 | 16 | void remove(dynamic tempName){ 17 | _installedStickers.remove(tempName); 18 | notifyListeners(); 19 | } 20 | 21 | } -------------------------------------------------------------------------------- /lib/modals/StickerListModal.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class StickerListModel extends ChangeNotifier{ 4 | 5 | List stickerList = new List(); 6 | 7 | int get stickerListSize => stickerList.length; 8 | 9 | List get getStickerList => stickerList; 10 | 11 | void addSticker(dynamic data){ 12 | this.stickerList.add(data); 13 | notifyListeners(); 14 | } 15 | 16 | } -------------------------------------------------------------------------------- /lib/screens/HomeScreen.dart: -------------------------------------------------------------------------------- 1 | import 'package:esys_flutter_share/esys_flutter_share.dart'; 2 | import 'package:flutter/material.dart'; 3 | import 'package:trendy_stickers/screens/StickerList.dart'; 4 | import 'package:url_launcher/url_launcher.dart'; 5 | 6 | 7 | class HomeScreen extends StatelessWidget { 8 | 9 | @override 10 | Widget build(BuildContext context) { 11 | return Scaffold( 12 | appBar: AppBar( 13 | title: Text( 14 | 'Trendy Stickers', 15 | style: TextStyle(color: Colors.black, fontWeight: FontWeight.bold), 16 | ), 17 | backgroundColor: Theme.of(context).scaffoldBackgroundColor, 18 | elevation: 0.0, 19 | automaticallyImplyLeading: false, 20 | actions: [ 21 | IconButton(icon: Icon(Icons.share, color: Colors.grey,), onPressed: () { 22 | Share.text('Share App', 'https://play.google.com/store/apps/details?id=com.noorisofttech.trendy_stickers', 'text/plain'); 23 | }), 24 | IconButton(icon: Icon(Icons.star_rate, color: Colors.grey,), onPressed: () { 25 | _launchURL(); 26 | }), 27 | ], 28 | ), 29 | body: StickerList(), 30 | ); 31 | } 32 | 33 | _launchURL() async { 34 | const url = 'https://play.google.com/store/apps/details?id=com.noorisofttech.trendy_stickers'; 35 | if (await canLaunch(url)) { 36 | await launch(url); 37 | } else { 38 | throw 'Could not launch $url'; 39 | } 40 | } 41 | 42 | } -------------------------------------------------------------------------------- /lib/screens/SplashScreen.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:trendy_stickers/screens/HomeScreen.dart'; 3 | 4 | class SplashScreen extends StatefulWidget { 5 | @override 6 | _SplashScreenState createState() => _SplashScreenState(); 7 | } 8 | 9 | class _SplashScreenState extends State { 10 | 11 | @override 12 | void initState() { 13 | super.initState(); 14 | Future.delayed(Duration(seconds: 2), (){ 15 | Navigator.push(context, MaterialPageRoute(builder: (context) => HomeScreen())); 16 | }); 17 | } 18 | 19 | @override 20 | Widget build(BuildContext context) { 21 | return Scaffold( 22 | body: Center( 23 | child: Column( 24 | mainAxisAlignment: MainAxisAlignment.center, 25 | children: [ 26 | Image.asset('assets/logo.png', width: 300,), 27 | SizedBox(height: 20,), 28 | CircularProgressIndicator() 29 | ], 30 | ), 31 | ), 32 | ); 33 | } 34 | } -------------------------------------------------------------------------------- /lib/screens/StickerList.dart: -------------------------------------------------------------------------------- 1 | import 'dart:convert'; 2 | import 'package:flutter/material.dart'; 3 | import 'package:flutter/services.dart'; 4 | import 'package:flutter_whatsapp_stickers/flutter_whatsapp_stickers.dart'; 5 | import 'package:provider/provider.dart'; 6 | import 'package:trendy_stickers/components/ReusableImage.dart'; 7 | import 'package:trendy_stickers/modals/InstallStickersModal.dart'; 8 | import 'package:trendy_stickers/modals/StickerListModal.dart'; 9 | import 'package:trendy_stickers/screens/StickerPackInformation.dart'; 10 | import 'package:trendy_stickers/utils/utils.dart'; 11 | 12 | class StickerList extends StatefulWidget { 13 | @override 14 | _StickerListState createState() => _StickerListState(); 15 | } 16 | 17 | class _StickerListState extends State { 18 | final WhatsAppStickers whatsAppStickers = WhatsAppStickers(); 19 | 20 | void _loadStickers() async { 21 | String data = 22 | await rootBundle.loadString("sticker_packs/sticker_packs.json"); 23 | final response = json.decode(data); 24 | 25 | for (int i = 0; i < response['sticker_packs'].length; i++) { 26 | Provider.of(context, listen: false) 27 | .addSticker(response['sticker_packs'][i]); 28 | } 29 | _checkInstallationStatuses(); 30 | } 31 | 32 | void _checkInstallationStatuses() async { 33 | print( 34 | "Total Stickers : ${Provider.of(context, listen: false).stickerListSize}"); 35 | for (var j = 0; 36 | j < 37 | Provider.of(context, listen: false) 38 | .stickerListSize; 39 | j++) { 40 | var tempName = Provider.of(context, listen: false) 41 | .getStickerList[j]['identifier']; 42 | bool tempInstall = 43 | await WhatsAppStickers().isStickerPackInstalled(tempName); 44 | 45 | if (tempInstall == true) { 46 | if (!Provider.of(context, listen: false) 47 | .installStickers 48 | .contains(tempName)) { 49 | Provider.of(context, listen: false) 50 | .add(tempName); 51 | } 52 | } else { 53 | if (Provider.of(context, listen: false) 54 | .installStickers 55 | .contains(tempName)) { 56 | Provider.of(context, listen: false) 57 | .remove(tempName); 58 | } 59 | } 60 | } 61 | } 62 | 63 | @override 64 | void initState() { 65 | super.initState(); 66 | _loadStickers(); 67 | } 68 | 69 | @override 70 | Widget build(BuildContext context) { 71 | return WillPopScope( 72 | onWillPop: () => SystemNavigator.pop(), 73 | child: Consumer( 74 | builder: (context, sticker, child) { 75 | return ListView.separated( 76 | itemCount: sticker.stickerListSize, 77 | itemBuilder: (context, index) { 78 | if (sticker.stickerListSize == 0) { 79 | return Container( 80 | child: CircularProgressIndicator(), 81 | ); 82 | } else { 83 | var stickerId = sticker.getStickerList[index]['identifier']; 84 | var stickerName = sticker.getStickerList[index]['name']; 85 | var stickerPublisher = sticker.getStickerList[index]['publisher']; 86 | var stickerTrayIcon = 87 | sticker.getStickerList[index]['tray_image_file']; 88 | var tempStickerList = List(); 89 | var stickers = sticker.getStickerList[index]['stickers']; 90 | 91 | bool stickerInstalled = false; 92 | if (Provider.of(context, listen: false) 93 | .installStickers 94 | .contains(stickerId)) { 95 | stickerInstalled = true; 96 | } else { 97 | stickerInstalled = false; 98 | } 99 | tempStickerList.add(sticker.getStickerList[index]['identifier']); 100 | tempStickerList.add(sticker.getStickerList[index]['name']); 101 | tempStickerList.add(sticker.getStickerList[index]['publisher']); 102 | tempStickerList 103 | .add(sticker.getStickerList[index]['tray_image_file']); 104 | tempStickerList.add(sticker.getStickerList[index]['stickers']); 105 | tempStickerList.add(stickerInstalled); 106 | tempStickerList.add( 107 | Provider.of(context, listen: false) 108 | .installStickers); 109 | 110 | return stickerPack( 111 | tempStickerList, 112 | stickers, 113 | stickerName, 114 | stickerPublisher, 115 | stickerId, 116 | stickerTrayIcon, 117 | stickerInstalled, 118 | ); 119 | } 120 | }, 121 | separatorBuilder: (_, __) => Divider(), 122 | ); 123 | }, 124 | ), 125 | ); 126 | } 127 | 128 | Widget stickerPack(List stickerList, List stickers, String name, String publisher, 129 | String identifier, String stickerTrayIcon, bool installed) { 130 | Widget depInstallWidget; 131 | 132 | List images = []; 133 | 134 | for(int i=0; i<5; i++){ 135 | images.add( 136 | ReusableImage( 137 | imagePath: "sticker_packs/$identifier/${stickers[i]['image_file']}", 138 | ), 139 | ); 140 | images.add(SizedBox(width: 5,)); 141 | } 142 | 143 | if (installed == true) { 144 | depInstallWidget = IconButton( 145 | icon: Icon( 146 | Icons.check, 147 | ), 148 | color: Colors.teal, 149 | tooltip: 'Add Sticker to WhatsApp', 150 | onPressed: () {}, 151 | ); 152 | } else { 153 | depInstallWidget = IconButton( 154 | icon: Icon( 155 | Icons.add, 156 | ), 157 | color: Colors.teal, 158 | tooltip: 'Add Sticker to WhatsApp', 159 | onPressed: () async { 160 | whatsAppStickers.addStickerPack( 161 | packageName: WhatsAppPackage.Consumer, 162 | stickerPackIdentifier: identifier, 163 | stickerPackName: name, 164 | listener: (action, result, {error}) => processResponse( 165 | action: action, 166 | result: result, 167 | error: error, 168 | successCallback: () async { 169 | _checkInstallationStatuses(); 170 | }, 171 | context: context, 172 | ), 173 | ); 174 | }, 175 | ); 176 | } 177 | 178 | return Container( 179 | padding: EdgeInsets.all(10.0), 180 | child: ListTile( 181 | onTap: () { 182 | Navigator.of(context).push(MaterialPageRoute( 183 | builder: (BuildContext context) => 184 | StickerPackInformation(stickerList), 185 | )); 186 | }, 187 | title: Row( 188 | children: [ 189 | Text( 190 | "$name", 191 | style: TextStyle(fontWeight: FontWeight.bold, fontSize: 18, color: Colors.lightGreen), 192 | ), 193 | SizedBox( 194 | width: 5, 195 | ), 196 | Text("$publisher", style: TextStyle(fontSize: 12, color: Colors.grey)), 197 | ], 198 | ), 199 | subtitle: Row( 200 | children: images, 201 | ), 202 | trailing: Column( 203 | children: [ 204 | depInstallWidget, 205 | ], 206 | ), 207 | ), 208 | ); 209 | } 210 | } -------------------------------------------------------------------------------- /lib/screens/StickerPackInformation.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_whatsapp_stickers/flutter_whatsapp_stickers.dart'; 3 | import 'package:trendy_stickers/utils/utils.dart'; 4 | 5 | class StickerPackInformation extends StatefulWidget { 6 | final List stickerPack; 7 | 8 | StickerPackInformation(this.stickerPack); 9 | @override 10 | _StickerPackInformationState createState() => _StickerPackInformationState(stickerPack); 11 | } 12 | 13 | class _StickerPackInformationState extends State { 14 | List stickerPack; 15 | final WhatsAppStickers _waStickers = WhatsAppStickers(); 16 | 17 | _StickerPackInformationState(this. stickerPack); //constructor 18 | 19 | void _checkInstallationStatuses() async { 20 | print("Total Stickers : ${stickerPack.length}"); 21 | var tempName = stickerPack[0]; 22 | bool tempInstall = await WhatsAppStickers().isStickerPackInstalled(tempName); 23 | 24 | if(tempInstall==true){ 25 | if(!stickerPack[6].contains(tempName)){ 26 | setState(() { 27 | stickerPack[6].add(tempName); 28 | }); 29 | } 30 | }else{ 31 | if(stickerPack[6].contains(tempName)){ 32 | setState(() { 33 | stickerPack[6].remove(tempName); 34 | }); 35 | } 36 | } 37 | print("${stickerPack[6]}"); 38 | } 39 | 40 | @override 41 | Widget build(BuildContext context) { 42 | List totalStickers = stickerPack[4]; 43 | // List fakeBottomButtons = new List(); 44 | // fakeBottomButtons.add( 45 | // Container( 46 | // height: 50.0, 47 | // ), 48 | // ); 49 | Widget depInstallWidget; 50 | if (stickerPack[5]==true) { 51 | depInstallWidget = Padding( 52 | padding: const EdgeInsets.symmetric(vertical:8.0), 53 | child: Text("Sticker Added",style: TextStyle( 54 | color: Colors.green, 55 | fontSize: 16.0, 56 | fontWeight: FontWeight.bold 57 | ),), 58 | ); 59 | } else { 60 | depInstallWidget =RaisedButton( 61 | child: Text("Add Sticker"), 62 | textColor: Colors.white, 63 | color: Colors.teal[900], 64 | onPressed: () async { 65 | _waStickers.addStickerPack( 66 | packageName: WhatsAppPackage.Consumer, 67 | stickerPackIdentifier: stickerPack[0], 68 | stickerPackName: stickerPack[1], 69 | listener: (action, result, {error}) => processResponse( 70 | action: action, 71 | result: result, 72 | error: error, 73 | successCallback: () async{ 74 | setState(() { 75 | _checkInstallationStatuses(); 76 | }); 77 | }, 78 | context: context, 79 | ), 80 | ); 81 | }, 82 | ); 83 | } 84 | return Scaffold( 85 | appBar: AppBar( 86 | title: Text("${stickerPack[1]} Stickers"), 87 | ), 88 | body: Column( 89 | children: [ 90 | Row( 91 | crossAxisAlignment: CrossAxisAlignment.start, 92 | children: [ 93 | Padding( 94 | padding: const EdgeInsets.all(10.0), 95 | child: Image.asset("sticker_packs/${stickerPack[0]}/${stickerPack[3]}", 96 | width: 100, 97 | height: 100, 98 | ), 99 | ), 100 | Padding( 101 | padding: const EdgeInsets.symmetric(vertical: 20.0, horizontal: 20.0), 102 | child: Column( 103 | crossAxisAlignment: CrossAxisAlignment.start, 104 | children: [ 105 | Text("${stickerPack[1]}",style: TextStyle( 106 | fontSize: 20.0, 107 | fontWeight: FontWeight.bold, 108 | color: Colors.teal[900], 109 | ),), 110 | Text("${stickerPack[2]}",style: TextStyle( 111 | fontSize: 14.0, 112 | color: Colors.black54, 113 | ),), 114 | depInstallWidget, 115 | ], 116 | ), 117 | ) 118 | 119 | ], 120 | ), 121 | Expanded( 122 | child: GridView.builder( 123 | gridDelegate: new SliverGridDelegateWithFixedCrossAxisCount( 124 | crossAxisCount: 4, 125 | childAspectRatio: 1, 126 | ), 127 | itemCount: totalStickers.length, 128 | itemBuilder: (context, index) { 129 | var stickerImg = "sticker_packs/${stickerPack[0]}/${totalStickers[index]['image_file']}"; 130 | return Padding( 131 | padding: const EdgeInsets.all(5.0), 132 | child: Image.asset(stickerImg, 133 | width:100, 134 | height: 100, 135 | ), 136 | ); 137 | } 138 | ), 139 | ), 140 | ], 141 | ), 142 | 143 | // persistentFooterButtons: fakeBottomButtons, 144 | 145 | ); 146 | } 147 | } -------------------------------------------------------------------------------- /lib/utils/utils.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_whatsapp_stickers/flutter_whatsapp_stickers.dart'; 3 | 4 | Future processResponse( 5 | {StickerPackResult action, 6 | bool result, 7 | String error, 8 | BuildContext context, 9 | Function successCallback}) async { 10 | print("_listener"); 11 | print(action); 12 | print(result); 13 | print(error); 14 | 15 | SnackBar snackBar; 16 | 17 | switch (action) { 18 | case StickerPackResult.SUCCESS: 19 | case StickerPackResult.ADD_SUCCESSFUL: 20 | case StickerPackResult.ALREADY_ADDED: 21 | successCallback(); 22 | break; 23 | case StickerPackResult.CANCELLED: 24 | snackBar = SnackBar(content: Text('Cancelled Sticker Pack Install')); 25 | break; 26 | case StickerPackResult.ERROR: 27 | snackBar = SnackBar(content: Text(error)); 28 | break; 29 | case StickerPackResult.UNKNOWN: 30 | snackBar = SnackBar(content: Text('Unkown Error - check the logs')); 31 | break; 32 | } 33 | 34 | /// Display a snack bar 35 | if (snackBar != null && context != null) { 36 | Scaffold.of(context).showSnackBar(snackBar); 37 | } 38 | } -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://dart.dev/tools/pub/glossary#lockfile 3 | packages: 4 | async: 5 | dependency: transitive 6 | description: 7 | name: async 8 | url: "https://pub.dartlang.org" 9 | source: hosted 10 | version: "2.5.0-nullsafety.1" 11 | boolean_selector: 12 | dependency: transitive 13 | description: 14 | name: boolean_selector 15 | url: "https://pub.dartlang.org" 16 | source: hosted 17 | version: "2.1.0-nullsafety.1" 18 | characters: 19 | dependency: transitive 20 | description: 21 | name: characters 22 | url: "https://pub.dartlang.org" 23 | source: hosted 24 | version: "1.1.0-nullsafety.3" 25 | charcode: 26 | dependency: transitive 27 | description: 28 | name: charcode 29 | url: "https://pub.dartlang.org" 30 | source: hosted 31 | version: "1.2.0-nullsafety.1" 32 | clock: 33 | dependency: transitive 34 | description: 35 | name: clock 36 | url: "https://pub.dartlang.org" 37 | source: hosted 38 | version: "1.1.0-nullsafety.1" 39 | collection: 40 | dependency: transitive 41 | description: 42 | name: collection 43 | url: "https://pub.dartlang.org" 44 | source: hosted 45 | version: "1.15.0-nullsafety.3" 46 | cupertino_icons: 47 | dependency: "direct main" 48 | description: 49 | name: cupertino_icons 50 | url: "https://pub.dartlang.org" 51 | source: hosted 52 | version: "1.0.0" 53 | esys_flutter_share: 54 | dependency: "direct main" 55 | description: 56 | name: esys_flutter_share 57 | url: "https://pub.dartlang.org" 58 | source: hosted 59 | version: "1.0.2" 60 | fake_async: 61 | dependency: transitive 62 | description: 63 | name: fake_async 64 | url: "https://pub.dartlang.org" 65 | source: hosted 66 | version: "1.2.0-nullsafety.1" 67 | ffi: 68 | dependency: transitive 69 | description: 70 | name: ffi 71 | url: "https://pub.dartlang.org" 72 | source: hosted 73 | version: "0.1.3" 74 | file: 75 | dependency: transitive 76 | description: 77 | name: file 78 | url: "https://pub.dartlang.org" 79 | source: hosted 80 | version: "5.2.1" 81 | flutter: 82 | dependency: "direct main" 83 | description: flutter 84 | source: sdk 85 | version: "0.0.0" 86 | flutter_test: 87 | dependency: "direct dev" 88 | description: flutter 89 | source: sdk 90 | version: "0.0.0" 91 | flutter_web_plugins: 92 | dependency: transitive 93 | description: flutter 94 | source: sdk 95 | version: "0.0.0" 96 | flutter_whatsapp_stickers: 97 | dependency: "direct main" 98 | description: 99 | name: flutter_whatsapp_stickers 100 | url: "https://pub.dartlang.org" 101 | source: hosted 102 | version: "1.0.0+4" 103 | intl: 104 | dependency: transitive 105 | description: 106 | name: intl 107 | url: "https://pub.dartlang.org" 108 | source: hosted 109 | version: "0.16.1" 110 | matcher: 111 | dependency: transitive 112 | description: 113 | name: matcher 114 | url: "https://pub.dartlang.org" 115 | source: hosted 116 | version: "0.12.10-nullsafety.1" 117 | meta: 118 | dependency: transitive 119 | description: 120 | name: meta 121 | url: "https://pub.dartlang.org" 122 | source: hosted 123 | version: "1.3.0-nullsafety.3" 124 | nested: 125 | dependency: transitive 126 | description: 127 | name: nested 128 | url: "https://pub.dartlang.org" 129 | source: hosted 130 | version: "0.0.4" 131 | path: 132 | dependency: transitive 133 | description: 134 | name: path 135 | url: "https://pub.dartlang.org" 136 | source: hosted 137 | version: "1.8.0-nullsafety.1" 138 | path_provider: 139 | dependency: transitive 140 | description: 141 | name: path_provider 142 | url: "https://pub.dartlang.org" 143 | source: hosted 144 | version: "1.6.27" 145 | path_provider_linux: 146 | dependency: transitive 147 | description: 148 | name: path_provider_linux 149 | url: "https://pub.dartlang.org" 150 | source: hosted 151 | version: "0.0.1+2" 152 | path_provider_macos: 153 | dependency: transitive 154 | description: 155 | name: path_provider_macos 156 | url: "https://pub.dartlang.org" 157 | source: hosted 158 | version: "0.0.4+8" 159 | path_provider_platform_interface: 160 | dependency: transitive 161 | description: 162 | name: path_provider_platform_interface 163 | url: "https://pub.dartlang.org" 164 | source: hosted 165 | version: "1.0.4" 166 | path_provider_windows: 167 | dependency: transitive 168 | description: 169 | name: path_provider_windows 170 | url: "https://pub.dartlang.org" 171 | source: hosted 172 | version: "0.0.4+3" 173 | platform: 174 | dependency: transitive 175 | description: 176 | name: platform 177 | url: "https://pub.dartlang.org" 178 | source: hosted 179 | version: "2.2.1" 180 | plugin_platform_interface: 181 | dependency: transitive 182 | description: 183 | name: plugin_platform_interface 184 | url: "https://pub.dartlang.org" 185 | source: hosted 186 | version: "1.0.3" 187 | process: 188 | dependency: transitive 189 | description: 190 | name: process 191 | url: "https://pub.dartlang.org" 192 | source: hosted 193 | version: "3.0.13" 194 | provider: 195 | dependency: "direct main" 196 | description: 197 | name: provider 198 | url: "https://pub.dartlang.org" 199 | source: hosted 200 | version: "4.3.2+3" 201 | sky_engine: 202 | dependency: transitive 203 | description: flutter 204 | source: sdk 205 | version: "0.0.99" 206 | source_span: 207 | dependency: transitive 208 | description: 209 | name: source_span 210 | url: "https://pub.dartlang.org" 211 | source: hosted 212 | version: "1.8.0-nullsafety.2" 213 | stack_trace: 214 | dependency: transitive 215 | description: 216 | name: stack_trace 217 | url: "https://pub.dartlang.org" 218 | source: hosted 219 | version: "1.10.0-nullsafety.1" 220 | stream_channel: 221 | dependency: transitive 222 | description: 223 | name: stream_channel 224 | url: "https://pub.dartlang.org" 225 | source: hosted 226 | version: "2.1.0-nullsafety.1" 227 | string_scanner: 228 | dependency: transitive 229 | description: 230 | name: string_scanner 231 | url: "https://pub.dartlang.org" 232 | source: hosted 233 | version: "1.1.0-nullsafety.1" 234 | term_glyph: 235 | dependency: transitive 236 | description: 237 | name: term_glyph 238 | url: "https://pub.dartlang.org" 239 | source: hosted 240 | version: "1.2.0-nullsafety.1" 241 | test_api: 242 | dependency: transitive 243 | description: 244 | name: test_api 245 | url: "https://pub.dartlang.org" 246 | source: hosted 247 | version: "0.2.19-nullsafety.2" 248 | typed_data: 249 | dependency: transitive 250 | description: 251 | name: typed_data 252 | url: "https://pub.dartlang.org" 253 | source: hosted 254 | version: "1.3.0-nullsafety.3" 255 | url_launcher: 256 | dependency: "direct main" 257 | description: 258 | name: url_launcher 259 | url: "https://pub.dartlang.org" 260 | source: hosted 261 | version: "5.7.10" 262 | url_launcher_linux: 263 | dependency: transitive 264 | description: 265 | name: url_launcher_linux 266 | url: "https://pub.dartlang.org" 267 | source: hosted 268 | version: "0.0.1+4" 269 | url_launcher_macos: 270 | dependency: transitive 271 | description: 272 | name: url_launcher_macos 273 | url: "https://pub.dartlang.org" 274 | source: hosted 275 | version: "0.0.1+9" 276 | url_launcher_platform_interface: 277 | dependency: transitive 278 | description: 279 | name: url_launcher_platform_interface 280 | url: "https://pub.dartlang.org" 281 | source: hosted 282 | version: "1.0.9" 283 | url_launcher_web: 284 | dependency: transitive 285 | description: 286 | name: url_launcher_web 287 | url: "https://pub.dartlang.org" 288 | source: hosted 289 | version: "0.1.5+1" 290 | url_launcher_windows: 291 | dependency: transitive 292 | description: 293 | name: url_launcher_windows 294 | url: "https://pub.dartlang.org" 295 | source: hosted 296 | version: "0.0.1+3" 297 | vector_math: 298 | dependency: transitive 299 | description: 300 | name: vector_math 301 | url: "https://pub.dartlang.org" 302 | source: hosted 303 | version: "2.1.0-nullsafety.3" 304 | win32: 305 | dependency: transitive 306 | description: 307 | name: win32 308 | url: "https://pub.dartlang.org" 309 | source: hosted 310 | version: "1.7.4" 311 | xdg_directories: 312 | dependency: transitive 313 | description: 314 | name: xdg_directories 315 | url: "https://pub.dartlang.org" 316 | source: hosted 317 | version: "0.1.2" 318 | sdks: 319 | dart: ">=2.10.0-110 <2.11.0" 320 | flutter: ">=1.22.0 <2.0.0" 321 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: trendy_stickers 2 | description: A new Flutter application. 3 | 4 | version: 1.0.0+1 5 | 6 | environment: 7 | sdk: ">=2.7.0 <3.0.0" 8 | 9 | dependencies: 10 | flutter: 11 | sdk: flutter 12 | 13 | cupertino_icons: ^1.0.0 14 | flutter_whatsapp_stickers: ^1.0.0+4 15 | url_launcher: ^5.7.10 16 | provider: ^4.3.2+3 17 | esys_flutter_share: ^1.0.2 18 | 19 | dev_dependencies: 20 | flutter_test: 21 | sdk: flutter 22 | 23 | flutter: 24 | 25 | uses-material-design: true 26 | 27 | assets: 28 | - assets/ 29 | - sticker_packs/1/ 30 | - sticker_packs/2/ 31 | - sticker_packs/3/ 32 | - sticker_packs/4/ 33 | - sticker_packs/5/ 34 | - sticker_packs/6/ 35 | - sticker_packs/sticker_packs.json -------------------------------------------------------------------------------- /sticker_packs/1/1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/1/1.webp -------------------------------------------------------------------------------- /sticker_packs/1/10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/1/10.webp -------------------------------------------------------------------------------- /sticker_packs/1/11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/1/11.webp -------------------------------------------------------------------------------- /sticker_packs/1/12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/1/12.webp -------------------------------------------------------------------------------- /sticker_packs/1/13.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/1/13.webp -------------------------------------------------------------------------------- /sticker_packs/1/14.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/1/14.webp -------------------------------------------------------------------------------- /sticker_packs/1/15.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/1/15.webp -------------------------------------------------------------------------------- /sticker_packs/1/16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/1/16.webp -------------------------------------------------------------------------------- /sticker_packs/1/17.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/1/17.webp -------------------------------------------------------------------------------- /sticker_packs/1/2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/1/2.webp -------------------------------------------------------------------------------- /sticker_packs/1/3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/1/3.webp -------------------------------------------------------------------------------- /sticker_packs/1/4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/1/4.webp -------------------------------------------------------------------------------- /sticker_packs/1/5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/1/5.webp -------------------------------------------------------------------------------- /sticker_packs/1/6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/1/6.webp -------------------------------------------------------------------------------- /sticker_packs/1/7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/1/7.webp -------------------------------------------------------------------------------- /sticker_packs/1/8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/1/8.webp -------------------------------------------------------------------------------- /sticker_packs/1/9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/1/9.webp -------------------------------------------------------------------------------- /sticker_packs/2/1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/1.webp -------------------------------------------------------------------------------- /sticker_packs/2/10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/10.webp -------------------------------------------------------------------------------- /sticker_packs/2/11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/11.webp -------------------------------------------------------------------------------- /sticker_packs/2/12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/12.webp -------------------------------------------------------------------------------- /sticker_packs/2/13.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/13.webp -------------------------------------------------------------------------------- /sticker_packs/2/14.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/14.webp -------------------------------------------------------------------------------- /sticker_packs/2/15.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/15.webp -------------------------------------------------------------------------------- /sticker_packs/2/16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/16.webp -------------------------------------------------------------------------------- /sticker_packs/2/17.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/17.webp -------------------------------------------------------------------------------- /sticker_packs/2/18.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/18.webp -------------------------------------------------------------------------------- /sticker_packs/2/19.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/19.webp -------------------------------------------------------------------------------- /sticker_packs/2/2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/2.webp -------------------------------------------------------------------------------- /sticker_packs/2/20.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/20.webp -------------------------------------------------------------------------------- /sticker_packs/2/21.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/21.webp -------------------------------------------------------------------------------- /sticker_packs/2/22.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/22.webp -------------------------------------------------------------------------------- /sticker_packs/2/23.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/23.webp -------------------------------------------------------------------------------- /sticker_packs/2/24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/24.webp -------------------------------------------------------------------------------- /sticker_packs/2/25.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/25.webp -------------------------------------------------------------------------------- /sticker_packs/2/26.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/26.webp -------------------------------------------------------------------------------- /sticker_packs/2/27.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/27.webp -------------------------------------------------------------------------------- /sticker_packs/2/28.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/28.webp -------------------------------------------------------------------------------- /sticker_packs/2/29.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/29.webp -------------------------------------------------------------------------------- /sticker_packs/2/3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/3.webp -------------------------------------------------------------------------------- /sticker_packs/2/30.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/30.webp -------------------------------------------------------------------------------- /sticker_packs/2/4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/4.webp -------------------------------------------------------------------------------- /sticker_packs/2/5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/5.webp -------------------------------------------------------------------------------- /sticker_packs/2/6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/6.webp -------------------------------------------------------------------------------- /sticker_packs/2/7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/7.webp -------------------------------------------------------------------------------- /sticker_packs/2/8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/8.webp -------------------------------------------------------------------------------- /sticker_packs/2/9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/2/9.webp -------------------------------------------------------------------------------- /sticker_packs/3/1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/3/1.webp -------------------------------------------------------------------------------- /sticker_packs/3/10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/3/10.webp -------------------------------------------------------------------------------- /sticker_packs/3/11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/3/11.webp -------------------------------------------------------------------------------- /sticker_packs/3/12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/3/12.webp -------------------------------------------------------------------------------- /sticker_packs/3/13.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/3/13.webp -------------------------------------------------------------------------------- /sticker_packs/3/14.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/3/14.webp -------------------------------------------------------------------------------- /sticker_packs/3/15.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/3/15.webp -------------------------------------------------------------------------------- /sticker_packs/3/16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/3/16.webp -------------------------------------------------------------------------------- /sticker_packs/3/17.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/3/17.webp -------------------------------------------------------------------------------- /sticker_packs/3/18.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/3/18.webp -------------------------------------------------------------------------------- /sticker_packs/3/19.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/3/19.webp -------------------------------------------------------------------------------- /sticker_packs/3/2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/3/2.webp -------------------------------------------------------------------------------- /sticker_packs/3/3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/3/3.webp -------------------------------------------------------------------------------- /sticker_packs/3/4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/3/4.webp -------------------------------------------------------------------------------- /sticker_packs/3/5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/3/5.webp -------------------------------------------------------------------------------- /sticker_packs/3/6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/3/6.webp -------------------------------------------------------------------------------- /sticker_packs/3/7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/3/7.webp -------------------------------------------------------------------------------- /sticker_packs/3/8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/3/8.webp -------------------------------------------------------------------------------- /sticker_packs/3/9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/3/9.webp -------------------------------------------------------------------------------- /sticker_packs/4/1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/4/1.webp -------------------------------------------------------------------------------- /sticker_packs/4/10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/4/10.webp -------------------------------------------------------------------------------- /sticker_packs/4/11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/4/11.webp -------------------------------------------------------------------------------- /sticker_packs/4/12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/4/12.webp -------------------------------------------------------------------------------- /sticker_packs/4/13.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/4/13.webp -------------------------------------------------------------------------------- /sticker_packs/4/14.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/4/14.webp -------------------------------------------------------------------------------- /sticker_packs/4/15.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/4/15.webp -------------------------------------------------------------------------------- /sticker_packs/4/16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/4/16.webp -------------------------------------------------------------------------------- /sticker_packs/4/17.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/4/17.webp -------------------------------------------------------------------------------- /sticker_packs/4/18.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/4/18.webp -------------------------------------------------------------------------------- /sticker_packs/4/19.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/4/19.webp -------------------------------------------------------------------------------- /sticker_packs/4/2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/4/2.webp -------------------------------------------------------------------------------- /sticker_packs/4/20.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/4/20.webp -------------------------------------------------------------------------------- /sticker_packs/4/3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/4/3.webp -------------------------------------------------------------------------------- /sticker_packs/4/4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/4/4.webp -------------------------------------------------------------------------------- /sticker_packs/4/5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/4/5.webp -------------------------------------------------------------------------------- /sticker_packs/4/6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/4/6.webp -------------------------------------------------------------------------------- /sticker_packs/4/7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/4/7.webp -------------------------------------------------------------------------------- /sticker_packs/4/8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/4/8.webp -------------------------------------------------------------------------------- /sticker_packs/4/9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/4/9.webp -------------------------------------------------------------------------------- /sticker_packs/5/1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/5/1.webp -------------------------------------------------------------------------------- /sticker_packs/5/10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/5/10.webp -------------------------------------------------------------------------------- /sticker_packs/5/11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/5/11.webp -------------------------------------------------------------------------------- /sticker_packs/5/12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/5/12.webp -------------------------------------------------------------------------------- /sticker_packs/5/13.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/5/13.webp -------------------------------------------------------------------------------- /sticker_packs/5/14.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/5/14.webp -------------------------------------------------------------------------------- /sticker_packs/5/15.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/5/15.webp -------------------------------------------------------------------------------- /sticker_packs/5/16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/5/16.webp -------------------------------------------------------------------------------- /sticker_packs/5/2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/5/2.webp -------------------------------------------------------------------------------- /sticker_packs/5/3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/5/3.webp -------------------------------------------------------------------------------- /sticker_packs/5/4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/5/4.webp -------------------------------------------------------------------------------- /sticker_packs/5/5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/5/5.webp -------------------------------------------------------------------------------- /sticker_packs/5/6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/5/6.webp -------------------------------------------------------------------------------- /sticker_packs/5/7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/5/7.webp -------------------------------------------------------------------------------- /sticker_packs/5/8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/5/8.webp -------------------------------------------------------------------------------- /sticker_packs/5/9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/5/9.webp -------------------------------------------------------------------------------- /sticker_packs/6/1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/1.webp -------------------------------------------------------------------------------- /sticker_packs/6/10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/10.webp -------------------------------------------------------------------------------- /sticker_packs/6/11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/11.webp -------------------------------------------------------------------------------- /sticker_packs/6/12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/12.webp -------------------------------------------------------------------------------- /sticker_packs/6/13.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/13.webp -------------------------------------------------------------------------------- /sticker_packs/6/14.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/14.webp -------------------------------------------------------------------------------- /sticker_packs/6/15.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/15.webp -------------------------------------------------------------------------------- /sticker_packs/6/16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/16.webp -------------------------------------------------------------------------------- /sticker_packs/6/17.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/17.webp -------------------------------------------------------------------------------- /sticker_packs/6/18.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/18.webp -------------------------------------------------------------------------------- /sticker_packs/6/19.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/19.webp -------------------------------------------------------------------------------- /sticker_packs/6/2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/2.webp -------------------------------------------------------------------------------- /sticker_packs/6/20.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/20.webp -------------------------------------------------------------------------------- /sticker_packs/6/21.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/21.webp -------------------------------------------------------------------------------- /sticker_packs/6/22.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/22.webp -------------------------------------------------------------------------------- /sticker_packs/6/23.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/23.webp -------------------------------------------------------------------------------- /sticker_packs/6/24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/24.webp -------------------------------------------------------------------------------- /sticker_packs/6/25.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/25.webp -------------------------------------------------------------------------------- /sticker_packs/6/26.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/26.webp -------------------------------------------------------------------------------- /sticker_packs/6/27.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/27.webp -------------------------------------------------------------------------------- /sticker_packs/6/28.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/28.webp -------------------------------------------------------------------------------- /sticker_packs/6/29.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/29.webp -------------------------------------------------------------------------------- /sticker_packs/6/3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/3.webp -------------------------------------------------------------------------------- /sticker_packs/6/30.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/30.webp -------------------------------------------------------------------------------- /sticker_packs/6/4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/4.webp -------------------------------------------------------------------------------- /sticker_packs/6/5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/5.webp -------------------------------------------------------------------------------- /sticker_packs/6/6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/6.webp -------------------------------------------------------------------------------- /sticker_packs/6/7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/7.webp -------------------------------------------------------------------------------- /sticker_packs/6/8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/8.webp -------------------------------------------------------------------------------- /sticker_packs/6/9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matifdeveloper/Whatsapp-Sticker---Flutter/87997f0ac48397035d1002aaabe04124f4d055c0/sticker_packs/6/9.webp -------------------------------------------------------------------------------- /sticker_packs/sticker_packs.json: -------------------------------------------------------------------------------- 1 | { 2 | "android_play_store_link": "", 3 | "sticker_packs": [ 4 | { 5 | "identifier": "6", 6 | "name": "Islamic", 7 | "publisher": "Trendy Stickers", 8 | "tray_image_file": "1.webp", 9 | "publisher_email":"", 10 | "publisher_website": "", 11 | "privacy_policy_website": "", 12 | "license_agreement_website": "", 13 | "image_data_version": "1", 14 | "stickers": [ 15 | { 16 | "image_file": "1.webp", 17 | "emojis": ["😆","😂"] 18 | }, 19 | { 20 | "image_file": "2.webp", 21 | "emojis": ["😭","💧"] 22 | }, 23 | { 24 | "image_file": "3.webp", 25 | "emojis": ["💔","👎"] 26 | }, 27 | { 28 | "image_file": "4.webp", 29 | "emojis": ["😍","💑"] 30 | }, 31 | { 32 | "image_file": "5.webp", 33 | "emojis": ["😍","💑"] 34 | }, 35 | { 36 | "image_file": "6.webp", 37 | "emojis": ["😍","💑"] 38 | }, 39 | { 40 | "image_file": "7.webp", 41 | "emojis": ["😍","💑"] 42 | }, 43 | { 44 | "image_file": "8.webp", 45 | "emojis": ["😍","💑"] 46 | }, 47 | { 48 | "image_file": "9.webp", 49 | "emojis": ["😍","💑"] 50 | }, 51 | { 52 | "image_file": "10.webp", 53 | "emojis": ["😍","💑"] 54 | }, 55 | { 56 | "image_file": "11.webp", 57 | "emojis": ["😍","💑"] 58 | }, 59 | { 60 | "image_file": "12.webp", 61 | "emojis": ["😍","💑"] 62 | }, 63 | { 64 | "image_file": "13.webp", 65 | "emojis": ["😍","💑"] 66 | }, 67 | { 68 | "image_file": "14.webp", 69 | "emojis": ["😍","💑"] 70 | }, 71 | { 72 | "image_file": "15.webp", 73 | "emojis": ["😍","💑"] 74 | }, 75 | { 76 | "image_file": "16.webp", 77 | "emojis": ["😍","💑"] 78 | }, 79 | { 80 | "image_file": "17.webp", 81 | "emojis": ["😍","💑"] 82 | }, 83 | { 84 | "image_file": "18.webp", 85 | "emojis": ["😍","💑"] 86 | }, 87 | { 88 | "image_file": "19.webp", 89 | "emojis": ["😍","💑"] 90 | }, 91 | { 92 | "image_file": "20.webp", 93 | "emojis": ["😍","💑"] 94 | }, 95 | { 96 | "image_file": "21.webp", 97 | "emojis": ["😍","💑"] 98 | }, 99 | { 100 | "image_file": "22.webp", 101 | "emojis": ["😍","💑"] 102 | }, 103 | { 104 | "image_file": "23.webp", 105 | "emojis": ["😍","💑"] 106 | }, 107 | { 108 | "image_file": "24.webp", 109 | "emojis": ["😍","💑"] 110 | }, 111 | { 112 | "image_file": "25.webp", 113 | "emojis": ["😍","💑"] 114 | }, 115 | { 116 | "image_file": "26.webp", 117 | "emojis": ["😍","💑"] 118 | }, 119 | { 120 | "image_file": "27.webp", 121 | "emojis": ["😍","💑"] 122 | }, 123 | { 124 | "image_file": "28.webp", 125 | "emojis": ["😍","💑"] 126 | }, 127 | { 128 | "image_file": "29.webp", 129 | "emojis": ["😍","💑"] 130 | }, 131 | { 132 | "image_file": "30.webp", 133 | "emojis": ["😍","💑"] 134 | } 135 | ] 136 | }, 137 | { 138 | "identifier": "1", 139 | "name": "Memes", 140 | "publisher": "Trendy Stickers", 141 | "tray_image_file": "1.webp", 142 | "publisher_email":"", 143 | "publisher_website": "", 144 | "privacy_policy_website": "", 145 | "license_agreement_website": "", 146 | "image_data_version": "1", 147 | "stickers": [ 148 | { 149 | "image_file": "1.webp", 150 | "emojis": ["😆","😂"] 151 | }, 152 | { 153 | "image_file": "2.webp", 154 | "emojis": ["😭","💧"] 155 | }, 156 | { 157 | "image_file": "3.webp", 158 | "emojis": ["💔","👎"] 159 | }, 160 | { 161 | "image_file": "4.webp", 162 | "emojis": ["😍","💑"] 163 | }, 164 | { 165 | "image_file": "5.webp", 166 | "emojis": ["😘","🍪"] 167 | }, 168 | { 169 | "image_file": "6.webp", 170 | "emojis": ["😩","😨"] 171 | }, 172 | { 173 | "image_file": "7.webp", 174 | "emojis": ["😩","😨"] 175 | }, 176 | { 177 | "image_file": "8.webp", 178 | "emojis": ["😩","😨"] 179 | }, 180 | { 181 | "image_file": "9.webp", 182 | "emojis": ["😩","😨"] 183 | }, 184 | { 185 | "image_file": "10.webp", 186 | "emojis": ["😩","😨"] 187 | }, 188 | { 189 | "image_file": "11.webp", 190 | "emojis": ["😆","😂"] 191 | }, 192 | { 193 | "image_file": "12.webp", 194 | "emojis": ["😭","💧"] 195 | }, 196 | { 197 | "image_file": "13.webp", 198 | "emojis": ["💔","👎"] 199 | }, 200 | { 201 | "image_file": "14.webp", 202 | "emojis": ["😍","💑"] 203 | }, 204 | { 205 | "image_file": "15.webp", 206 | "emojis": ["😘","🍪"] 207 | }, 208 | { 209 | "image_file": "16.webp", 210 | "emojis": ["😩","😨"] 211 | }, 212 | { 213 | "image_file": "17.webp", 214 | "emojis": ["😩","😨"] 215 | } 216 | ] 217 | }, 218 | { 219 | "identifier": "2", 220 | "name": "Red Flowers", 221 | "publisher": "Trendy Stickers", 222 | "tray_image_file": "1.webp", 223 | "publisher_email":"", 224 | "publisher_website": "", 225 | "privacy_policy_website": "", 226 | "license_agreement_website": "", 227 | "image_data_version": "1", 228 | "stickers": [ 229 | { 230 | "image_file": "1.webp", 231 | "emojis": ["😆","😂"] 232 | }, 233 | { 234 | "image_file": "2.webp", 235 | "emojis": ["😭","💧"] 236 | }, 237 | { 238 | "image_file": "3.webp", 239 | "emojis": ["💔","👎"] 240 | }, 241 | { 242 | "image_file": "4.webp", 243 | "emojis": ["😍","💑"] 244 | }, 245 | { 246 | "image_file": "5.webp", 247 | "emojis": ["😘","🍪"] 248 | }, 249 | { 250 | "image_file": "6.webp", 251 | "emojis": ["😩","😨"] 252 | }, 253 | { 254 | "image_file": "7.webp", 255 | "emojis": ["😩","😨"] 256 | }, 257 | { 258 | "image_file": "8.webp", 259 | "emojis": ["😩","😨"] 260 | }, 261 | { 262 | "image_file": "9.webp", 263 | "emojis": ["😩","😨"] 264 | }, 265 | { 266 | "image_file": "10.webp", 267 | "emojis": ["😩","😨"] 268 | }, 269 | { 270 | "image_file": "11.webp", 271 | "emojis": ["😆","😂"] 272 | }, 273 | { 274 | "image_file": "12.webp", 275 | "emojis": ["😭","💧"] 276 | }, 277 | { 278 | "image_file": "13.webp", 279 | "emojis": ["💔","👎"] 280 | }, 281 | { 282 | "image_file": "14.webp", 283 | "emojis": ["😍","💑"] 284 | }, 285 | { 286 | "image_file": "15.webp", 287 | "emojis": ["😘","🍪"] 288 | }, 289 | { 290 | "image_file": "16.webp", 291 | "emojis": ["😩","😨"] 292 | }, 293 | { 294 | "image_file": "17.webp", 295 | "emojis": ["😩","😨"] 296 | }, 297 | { 298 | "image_file": "18.webp", 299 | "emojis": ["😩","😨"] 300 | }, 301 | { 302 | "image_file": "19.webp", 303 | "emojis": ["😩","😨"] 304 | }, 305 | { 306 | "image_file": "20.webp", 307 | "emojis": ["😩","😨"] 308 | }, 309 | { 310 | "image_file": "21.webp", 311 | "emojis": ["😆","😂"] 312 | }, 313 | { 314 | "image_file": "22.webp", 315 | "emojis": ["😭","💧"] 316 | }, 317 | { 318 | "image_file": "23.webp", 319 | "emojis": ["💔","👎"] 320 | }, 321 | { 322 | "image_file": "24.webp", 323 | "emojis": ["😍","💑"] 324 | }, 325 | { 326 | "image_file": "25.webp", 327 | "emojis": ["😘","🍪"] 328 | }, 329 | { 330 | "image_file": "26.webp", 331 | "emojis": ["😩","😨"] 332 | }, 333 | { 334 | "image_file": "27.webp", 335 | "emojis": ["😩","😨"] 336 | }, 337 | { 338 | "image_file": "28.webp", 339 | "emojis": ["😩","😨"] 340 | }, 341 | { 342 | "image_file": "29.webp", 343 | "emojis": ["😩","😨"] 344 | }, 345 | { 346 | "image_file": "30.webp", 347 | "emojis": ["😩","😨"] 348 | } 349 | ] 350 | }, 351 | { 352 | "identifier": "3", 353 | "name": "Smile Person", 354 | "publisher": "Trendy Stickers", 355 | "tray_image_file": "1.webp", 356 | "publisher_email":"", 357 | "publisher_website": "", 358 | "privacy_policy_website": "", 359 | "license_agreement_website": "", 360 | "image_data_version": "1", 361 | "stickers": [ 362 | { 363 | "image_file": "1.webp", 364 | "emojis": ["😆","😂"] 365 | }, 366 | { 367 | "image_file": "2.webp", 368 | "emojis": ["😭","💧"] 369 | }, 370 | { 371 | "image_file": "3.webp", 372 | "emojis": ["💔","👎"] 373 | }, 374 | { 375 | "image_file": "4.webp", 376 | "emojis": ["😍","💑"] 377 | }, 378 | { 379 | "image_file": "5.webp", 380 | "emojis": ["😘","🍪"] 381 | }, 382 | { 383 | "image_file": "6.webp", 384 | "emojis": ["😩","😨"] 385 | }, 386 | { 387 | "image_file": "7.webp", 388 | "emojis": ["😩","😨"] 389 | }, 390 | { 391 | "image_file": "8.webp", 392 | "emojis": ["😩","😨"] 393 | }, 394 | { 395 | "image_file": "9.webp", 396 | "emojis": ["😩","😨"] 397 | }, 398 | { 399 | "image_file": "10.webp", 400 | "emojis": ["😩","😨"] 401 | }, 402 | { 403 | "image_file": "11.webp", 404 | "emojis": ["😆","😂"] 405 | }, 406 | { 407 | "image_file": "12.webp", 408 | "emojis": ["😭","💧"] 409 | }, 410 | { 411 | "image_file": "13.webp", 412 | "emojis": ["💔","👎"] 413 | }, 414 | { 415 | "image_file": "14.webp", 416 | "emojis": ["😍","💑"] 417 | }, 418 | { 419 | "image_file": "15.webp", 420 | "emojis": ["😘","🍪"] 421 | }, 422 | { 423 | "image_file": "16.webp", 424 | "emojis": ["😩","😨"] 425 | }, 426 | { 427 | "image_file": "17.webp", 428 | "emojis": ["😩","😨"] 429 | }, 430 | { 431 | "image_file": "18.webp", 432 | "emojis": ["😩","😨"] 433 | }, 434 | { 435 | "image_file": "19.webp", 436 | "emojis": ["😩","😨"] 437 | } 438 | ] 439 | }, 440 | { 441 | "identifier": "4", 442 | "name": "Spoild Rabbit", 443 | "publisher": "Trendy Stickers", 444 | "tray_image_file": "1.webp", 445 | "publisher_email":"", 446 | "publisher_website": "", 447 | "privacy_policy_website": "", 448 | "license_agreement_website": "", 449 | "image_data_version": "1", 450 | "stickers": [ 451 | { 452 | "image_file": "1.webp", 453 | "emojis": ["😆","😂"] 454 | }, 455 | { 456 | "image_file": "2.webp", 457 | "emojis": ["😭","💧"] 458 | }, 459 | { 460 | "image_file": "3.webp", 461 | "emojis": ["💔","👎"] 462 | }, 463 | { 464 | "image_file": "4.webp", 465 | "emojis": ["😍","💑"] 466 | }, 467 | { 468 | "image_file": "5.webp", 469 | "emojis": ["😘","🍪"] 470 | }, 471 | { 472 | "image_file": "6.webp", 473 | "emojis": ["😩","😨"] 474 | }, 475 | { 476 | "image_file": "7.webp", 477 | "emojis": ["😩","😨"] 478 | }, 479 | { 480 | "image_file": "8.webp", 481 | "emojis": ["😩","😨"] 482 | }, 483 | { 484 | "image_file": "9.webp", 485 | "emojis": ["😩","😨"] 486 | }, 487 | { 488 | "image_file": "10.webp", 489 | "emojis": ["😩","😨"] 490 | }, 491 | { 492 | "image_file": "11.webp", 493 | "emojis": ["😆","😂"] 494 | }, 495 | { 496 | "image_file": "12.webp", 497 | "emojis": ["😭","💧"] 498 | }, 499 | { 500 | "image_file": "13.webp", 501 | "emojis": ["💔","👎"] 502 | }, 503 | { 504 | "image_file": "14.webp", 505 | "emojis": ["😍","💑"] 506 | }, 507 | { 508 | "image_file": "15.webp", 509 | "emojis": ["😘","🍪"] 510 | }, 511 | { 512 | "image_file": "16.webp", 513 | "emojis": ["😩","😨"] 514 | }, 515 | { 516 | "image_file": "17.webp", 517 | "emojis": ["😩","😨"] 518 | }, 519 | { 520 | "image_file": "18.webp", 521 | "emojis": ["😩","😨"] 522 | }, 523 | { 524 | "image_file": "19.webp", 525 | "emojis": ["😩","😨"] 526 | }, 527 | { 528 | "image_file": "20.webp", 529 | "emojis": ["😩","😨"] 530 | } 531 | ] 532 | }, 533 | { 534 | "identifier": "5", 535 | "name": "Cartoon", 536 | "publisher": "Trendy Stickers", 537 | "tray_image_file": "1.webp", 538 | "publisher_email":"", 539 | "publisher_website": "", 540 | "privacy_policy_website": "", 541 | "license_agreement_website": "", 542 | "image_data_version": "1", 543 | "stickers": [ 544 | { 545 | "image_file": "1.webp", 546 | "emojis": ["😆","😂"] 547 | }, 548 | { 549 | "image_file": "2.webp", 550 | "emojis": ["😭","💧"] 551 | }, 552 | { 553 | "image_file": "3.webp", 554 | "emojis": ["💔","👎"] 555 | }, 556 | { 557 | "image_file": "4.webp", 558 | "emojis": ["😍","💑"] 559 | }, 560 | { 561 | "image_file": "5.webp", 562 | "emojis": ["😘","🍪"] 563 | }, 564 | { 565 | "image_file": "6.webp", 566 | "emojis": ["😩","😨"] 567 | }, 568 | { 569 | "image_file": "7.webp", 570 | "emojis": ["😩","😨"] 571 | }, 572 | { 573 | "image_file": "8.webp", 574 | "emojis": ["😩","😨"] 575 | }, 576 | { 577 | "image_file": "9.webp", 578 | "emojis": ["😩","😨"] 579 | }, 580 | { 581 | "image_file": "10.webp", 582 | "emojis": ["😩","😨"] 583 | }, 584 | { 585 | "image_file": "11.webp", 586 | "emojis": ["😆","😂"] 587 | }, 588 | { 589 | "image_file": "12.webp", 590 | "emojis": ["😭","💧"] 591 | }, 592 | { 593 | "image_file": "13.webp", 594 | "emojis": ["💔","👎"] 595 | }, 596 | { 597 | "image_file": "14.webp", 598 | "emojis": ["😍","💑"] 599 | }, 600 | { 601 | "image_file": "15.webp", 602 | "emojis": ["😘","🍪"] 603 | }, 604 | { 605 | "image_file": "16.webp", 606 | "emojis": ["😩","😨"] 607 | } 608 | ] 609 | } 610 | ] 611 | } 612 | --------------------------------------------------------------------------------