{"id":40216479,"url":"https://github.com/lolocomotive/stickers","last_synced_at":"2026-01-19T21:37:16.296Z","repository":{"id":228283506,"uuid":"773555230","full_name":"lolocomotive/stickers","owner":"lolocomotive","description":"Simple android sticker maker for WhatsApp without ads.","archived":false,"fork":false,"pushed_at":"2025-12-19T23:20:54.000Z","size":6530,"stargazers_count":57,"open_issues_count":4,"forks_count":6,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-22T09:59:24.413Z","etag":null,"topics":["android","flutter","sticker-maker","whatsapp","whatsapp-stickers"],"latest_commit_sha":null,"homepage":"https://play.google.com/store/apps/details?id=de.loicezt.stickers","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lolocomotive.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"lolocomotive"}},"created_at":"2024-03-18T00:36:57.000Z","updated_at":"2025-12-19T22:39:30.000Z","dependencies_parsed_at":"2025-04-06T21:19:09.116Z","dependency_job_id":"18ac11f3-e6db-4240-8929-f5d8b3206b2e","html_url":"https://github.com/lolocomotive/stickers","commit_stats":null,"previous_names":["lolocomotive/stickers"],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/lolocomotive/stickers","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lolocomotive%2Fstickers","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lolocomotive%2Fstickers/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lolocomotive%2Fstickers/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lolocomotive%2Fstickers/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lolocomotive","download_url":"https://codeload.github.com/lolocomotive/stickers/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lolocomotive%2Fstickers/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28585597,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T20:45:59.482Z","status":"ssl_error","status_checked_at":"2026-01-19T20:45:41.500Z","response_time":67,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","flutter","sticker-maker","whatsapp","whatsapp-stickers"],"created_at":"2026-01-19T21:37:15.797Z","updated_at":"2026-01-19T21:37:16.291Z","avatar_url":"https://github.com/lolocomotive.png","language":"Dart","funding_links":["https://github.com/sponsors/lolocomotive"],"categories":[],"sub_categories":[],"readme":"# Stickers\n\nSimple android sticker maker for WhatsApp without ads.\n\n[![](https://upload.wikimedia.org/wikipedia/commons/7/78/Google_Play_Store_badge_EN.svg)](https://play.google.com/store/apps/details?id=de.loicezt.stickers)\n\nOr download from the latest [GitHub Release](https://github.com/lolocomotive/stickers/releases)\n\n## Features\n\n- Quick mode: sharing an image to the app automatically adds it to whatsapp\n- Editor\n    - Crop your sticker to your heart's content\n    - Add texts with different sizes, fonts and colors\n    - Draw with different colors and brush sizes, with undo/redo support\n    - Every element has its own layer unde the hood, so you can draw above and below texts\n- Import/Export\n    - Export to `.zip` to share or backup your packs\n    - Import from various formats (own `.zip` format, `.wastickers`, `.stickify`, shouldn't be too\n      hard to add more because most of them are just a ZIP file with pictures and a simple manifest)\n- Create, edit and delete multiple packs and their metadata (author, title, tray icon and more)\n\n## Screenshots\n\n| Home                              | Pack view                         | Editor                                |\n|-----------------------------------|-----------------------------------|---------------------------------------|\n| ![home.png](screenshots/home.png) | ![pack.png](screenshots/pack.png) | ![editor.png](screenshots/editor.png) |\n\n## Building\n\n`flutter run` should work just fine, however if you want to build the release version of the app,\nyou'll need to either:\n\n\u003cdetails\u003e\n\u003csummary\u003eUse your own signing key\u003c/summary\u003e\n\nIn `android/` create `key.properties` with\n\n```properties\nstoreFile=path/to/keystore.jks\nkeyAlias=your key alias\nstorePassword=your store password\nkeyPassword=your key password\n```\n\nMore details: https://docs.flutter.dev/deployment/android#sign-the-app\n\n\u003c/details\u003e\n\nor\n\n\u003cdetails\u003e\n\u003csummary\u003eUse the debug signing config\u003c/summary\u003e\n\nIn `android/app/build.gradle` around line 29\n\n```\nbuildTypes {\n  release {\n    signingConfig signingConfigs.release\n  }\n}\n```\n\nreplace `signingConfigs.release` with `signingConfigs.debug` and remove\n\n```\ndef keystoreProperties = new Properties()\ndef keystorePropertiesFile = rootProject.file(\"key.properties\")\nif (keystorePropertiesFile.exists()) {\n    keystorePropertiesFile.withReader('UTF-8') { reader -\u003e\n        keystoreProperties.load(reader)\n    }\n}\n```\n\nand\n\n```\nsigningConfigs {\n    create(\"release\") {\n        keyAlias = keystoreProperties[\"keyAlias\"]\n        keyPassword = keystoreProperties[\"keyPassword\"]\n        storeFile = new File(keystoreProperties[\"storeFile\"])\n        storePassword = keystoreProperties[\"storePassword\"]\n    }\n}\n```\n\nAnd it *should* work, only use for testing.\n\u003c/details\u003e\n\nAnd the you just need to\n\n```\nflutter build apk\n```\n\n## Contributing\n\nAny contributions (Pull requests, feature requests and bug reports) are very welcome!\nBe aware that I set my line width to 120 instead of 80, so be careful before reformatting entire\nfiles. If you're using vscode put the following in `.vscode/settings.json` .\n\n```json\n{\n  \"dart.lineLength\": 120,\n  \"[dart]\": {\n    \"editor.rulers\": [\n      120\n    ]\n  }\n}\n```\n\nAlso the code is not very well documented yet so sorry in advance to anyone trying to read it.\n\n## TODO\n\nSome features I plan to work on in the future\n\n- [ ] Selecting multiple packs at once in the home screen\n- [ ] Add option to add a background to texts\n- [ ] Image layers on stickers\n- [ ] Start with an existing sticker\n- [ ] Create animated stickers from gifs\n- [ ] Crop and rotate videos\n\n## iOS Support\n\nI don't own any Apple devices, therefore I can't build for iOS nor test the iOS app. It's a flutter\napp so it should more or less work.\nIf you want to add iOS support, you're welcome! Here's some things to look out for:\n\n- `image_editor` would have to be modified to support WEBP on iOS (I only added support for WEBP on\n  Android)\n- `whatsapp_stickers_plus` package might not work (it didn't on Android).\n- Many widgets would have to be replaced with their `.adaptive` equivalent if you want it to look\n  like an iOS app\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flolocomotive%2Fstickers","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flolocomotive%2Fstickers","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flolocomotive%2Fstickers/lists"}