├── .github ├── FUNDING.yml └── workflows │ └── dart.yml ├── .gitignore ├── .idea ├── .gitignore ├── libraries │ ├── Dart_SDK.xml │ └── Flutter_Plugins.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── runConfigurations │ └── example_lib_main_dart.xml ├── .metadata ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── settings.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── kotlin │ └── com │ │ └── otopba │ │ └── telegram_stickers_import │ │ ├── Sticker.kt │ │ ├── StickerData.kt │ │ ├── StickerSet.kt │ │ └── TelegramStickersImportPlugin.kt │ └── res │ └── xml │ └── filepaths.xml ├── example ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── otopba │ │ │ │ └── telegram_stickers_import_example │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── 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-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── settings.gradle │ └── settings_aar.gradle ├── assets │ ├── a_sticker1.tgs │ ├── a_sticker2.tgs │ ├── a_sticker3.tgs │ ├── a_sticker4.tgs │ ├── a_sticker5.tgs │ ├── a_sticker6.tgs │ ├── a_sticker7.tgs │ ├── a_sticker8.tgs │ ├── a_sticker9.tgs │ ├── sticker1.webp │ ├── sticker2.webp │ ├── sticker3.webp │ ├── sticker4.webp │ ├── sticker5.webp │ ├── sticker6.webp │ ├── sticker7.webp │ ├── sticker8.webp │ └── sticker9.webp ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── 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.swift │ │ ├── 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 │ │ └── Runner-Bridging-Header.h ├── lib │ └── main.dart ├── pubspec.lock └── pubspec.yaml ├── ios ├── .gitignore ├── Assets │ └── .gitkeep ├── Classes │ ├── SwiftTelegramStickersImportPlugin.swift │ ├── TelegramStickersImportPlugin.h │ └── TelegramStickersImportPlugin.m └── telegram_stickers_import.podspec ├── lib ├── sticker.dart ├── sticker_data.dart ├── sticker_set.dart └── telegram_stickers_import.dart ├── pubspec.lock ├── pubspec.yaml ├── telegram_stickers_import.iml └── test └── serialize_test.dart /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [otopba] 4 | -------------------------------------------------------------------------------- /.github/workflows/dart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/.github/workflows/dart.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/libraries/Dart_SDK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/.idea/libraries/Dart_SDK.xml -------------------------------------------------------------------------------- /.idea/libraries/Flutter_Plugins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/.idea/libraries/Flutter_Plugins.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/example_lib_main_dart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/.idea/runConfigurations/example_lib_main_dart.xml -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'telegram_stickers_import' 2 | -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/kotlin/com/otopba/telegram_stickers_import/Sticker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/android/src/main/kotlin/com/otopba/telegram_stickers_import/Sticker.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/otopba/telegram_stickers_import/StickerData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/android/src/main/kotlin/com/otopba/telegram_stickers_import/StickerData.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/otopba/telegram_stickers_import/StickerSet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/android/src/main/kotlin/com/otopba/telegram_stickers_import/StickerSet.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/otopba/telegram_stickers_import/TelegramStickersImportPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/android/src/main/kotlin/com/otopba/telegram_stickers_import/TelegramStickersImportPlugin.kt -------------------------------------------------------------------------------- /android/src/main/res/xml/filepaths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/android/src/main/res/xml/filepaths.xml -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/README.md -------------------------------------------------------------------------------- /example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/analysis_options.yaml -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/kotlin/com/otopba/telegram_stickers_import_example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/android/app/src/main/kotlin/com/otopba/telegram_stickers_import_example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/android/settings_aar.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /example/assets/a_sticker1.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/assets/a_sticker1.tgs -------------------------------------------------------------------------------- /example/assets/a_sticker2.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/assets/a_sticker2.tgs -------------------------------------------------------------------------------- /example/assets/a_sticker3.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/assets/a_sticker3.tgs -------------------------------------------------------------------------------- /example/assets/a_sticker4.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/assets/a_sticker4.tgs -------------------------------------------------------------------------------- /example/assets/a_sticker5.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/assets/a_sticker5.tgs -------------------------------------------------------------------------------- /example/assets/a_sticker6.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/assets/a_sticker6.tgs -------------------------------------------------------------------------------- /example/assets/a_sticker7.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/assets/a_sticker7.tgs -------------------------------------------------------------------------------- /example/assets/a_sticker8.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/assets/a_sticker8.tgs -------------------------------------------------------------------------------- /example/assets/a_sticker9.tgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/assets/a_sticker9.tgs -------------------------------------------------------------------------------- /example/assets/sticker1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/assets/sticker1.webp -------------------------------------------------------------------------------- /example/assets/sticker2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/assets/sticker2.webp -------------------------------------------------------------------------------- /example/assets/sticker3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/assets/sticker3.webp -------------------------------------------------------------------------------- /example/assets/sticker4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/assets/sticker4.webp -------------------------------------------------------------------------------- /example/assets/sticker5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/assets/sticker5.webp -------------------------------------------------------------------------------- /example/assets/sticker6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/assets/sticker6.webp -------------------------------------------------------------------------------- /example/assets/sticker7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/assets/sticker7.webp -------------------------------------------------------------------------------- /example/assets/sticker8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/assets/sticker8.webp -------------------------------------------------------------------------------- /example/assets/sticker9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/assets/sticker9.webp -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/pubspec.lock -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Classes/SwiftTelegramStickersImportPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/ios/Classes/SwiftTelegramStickersImportPlugin.swift -------------------------------------------------------------------------------- /ios/Classes/TelegramStickersImportPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/ios/Classes/TelegramStickersImportPlugin.h -------------------------------------------------------------------------------- /ios/Classes/TelegramStickersImportPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/ios/Classes/TelegramStickersImportPlugin.m -------------------------------------------------------------------------------- /ios/telegram_stickers_import.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/ios/telegram_stickers_import.podspec -------------------------------------------------------------------------------- /lib/sticker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/lib/sticker.dart -------------------------------------------------------------------------------- /lib/sticker_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/lib/sticker_data.dart -------------------------------------------------------------------------------- /lib/sticker_set.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/lib/sticker_set.dart -------------------------------------------------------------------------------- /lib/telegram_stickers_import.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/lib/telegram_stickers_import.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /telegram_stickers_import.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/telegram_stickers_import.iml -------------------------------------------------------------------------------- /test/serialize_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otopba/telegram_stickers_import/HEAD/test/serialize_test.dart --------------------------------------------------------------------------------