Web Analytics

stickers

⭐ 80 stars English by lolocomotive

Stickers

Simple android sticker maker for WhatsApp without ads.

Or download from the latest GitHub Release

Features

hard to add more because most of them are just a ZIP file with pictures and a simple manifest)

Screenshots

| Home | Pack view | Editor | |-----------------------------------|-----------------------------------|---------------------------------------| | home.png | pack.png | editor.png |

Building

flutter run should work just fine, however if you want to build the release version of the app, you'll need to either:

Use your own signing key

In android/ create key.properties with

storeFile=path/to/keystore.jks
keyAlias=your key alias
storePassword=your store password
keyPassword=your key password

More details: https://docs.flutter.dev/deployment/android#sign-the-app

or

Use the debug signing config

In android/app/build.gradle around line 29

buildTypes {
  release {
    signingConfig signingConfigs.release
  }
}

replace signingConfigs.release with signingConfigs.debug and remove

def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file("key.properties")
if (keystorePropertiesFile.exists()) {
    keystorePropertiesFile.withReader('UTF-8') { reader ->
        keystoreProperties.load(reader)
    }
}

and

signingConfigs {
    create("release") {
        keyAlias = keystoreProperties["keyAlias"]
        keyPassword = keystoreProperties["keyPassword"]
        storeFile = new File(keystoreProperties["storeFile"])
        storePassword = keystoreProperties["storePassword"]
    }
}

And it should work, only use for testing.

And then you just need to

flutter build apk

Contributing

Any contributions (Pull requests, feature requests and bug reports) are very welcome! Be aware that I set my line width to 120 instead of 80, so be careful before reformatting entire files. If you're using vscode put the following in .vscode/settings.json .

{
  "dart.lineLength": 120,
  "[dart]": {
    "editor.rulers": [
      120
    ]
  }
}
Also the code is not very well documented yet so sorry in advance to anyone trying to read it.

TODO

Some features I plan to work on in the future

iOS Support

I don't own any Apple devices, therefore I can't build for iOS nor test the iOS app. It's a flutter app so it should more or less work. If you want to add iOS support, you're welcome! Here's some things to look out for:

Android) like an iOS app

--- Tranlated By Open Ai Tx | Last indexed: 2026-03-30 ---