Our Solutions

Premium Flutter plugins and mobile applications crafted with passion.

v1.7.1 β€” Camera Input & 6 Solvers

CubeXpert

Whether you are a complete beginner or an aspiring speedcuber, CubeXpert helps you learn, practice, and improve with interactive 3D guidance, powerful speedcubing tools, and camera input scanning.

πŸ“·

Camera Input Scanning

Scan your cube with the camera to detect colors and generate a solution faster than manual entry.

🧩

6 Powerful Solvers

Master the cube with Beginner, CFOP, Roux, ZZ, Petrus, and the optimal Kociemba solver with phase-by-phase guidance.

πŸ“š

Learn From Scratch

Comprehensive beginner lessons from zero to your first solve, including notation and interactive 3D demonstrations.

🎯

Algorithm Practice

Targeted training for F2L, OLL, and PLL with smart scrambles and technique improvement drills.

🧊

Interactive 3D Puzzle

Train with a realistic cube experience featuring gesture-based moves, fluid rendering, and instant scrambles.

πŸ“ˆ

Pro Tools & Statistics

Elevate your practice with session management, WCA inspection timer, smart orientation, and advanced statistics.

Privacy Focused: No account required β€’ Local data storage
CubeXpert
v1.0.1 β€” Symmetric Annihilation

Anti-2048

The 2048 you know, inverted. Slide tiles across a mirror line so matching pairs annihilate each other, and race to clear the board. A cerebral puzzle of symmetry and subtractionβ€”now available on Android.

πŸͺž

Symmetric Annihilation

Slide tiles across a mirror axis so matching pairs cancel out. It is 2048 in reverse: clear the board instead of building it up.

🎯

Three Board Sizes

Play 4Γ—4 Classic for quick duels, 6Γ—6 Strategist for deeper planning, or 8Γ—8 Marathon for long campaigns.

⏱️

Beat the Clock

Switch to Timer Mode for high-pressure runs, with the option to watch a rewarded ad for +60 seconds when you need it.

πŸ†

Global Leaderboards

Compete on Google Play Games leaderboards for fewest moves and most tiles annihilated. Sign-in is optional.

πŸ’‘

Hints & Undo

Stuck? Take a hint or undo a move to find the path forward β€” or revive a lost game to keep your run alive.

πŸ“Š

Local History & Stats

Every game is recorded on-device with moves, outcome, and max tile, so you can track your progress over time.

Privacy Focused: No account required β€’ Local data storage β€’ Optional Play Games sign-in
Anti-2048
v1.0.0 β€” Sandpile Cascades

Spillway

A minimalist sandpile puzzle about chain reactions. Tap to drop grains of sand, watch overloaded cells topple into their neighbours, and ride the cascade to sculpt the board into the target shapeβ€”before you run out of drops. Now available on Android.

🌊

Topple & Cascade

Tap to drop a grain. When a cell reaches four grains it spills to its four neighbours, and each spill can tip the next β€” chain the cascade to match the target shape before your drops run out.

πŸ“…

A Daily for Everyone

One deterministic puzzle every player in the world shares each day. Build a streak and chase the fastest solve time.

♾️

Endless Practice

Start with hand-crafted tutorial levels, then play an endless stream of generated puzzles that ramp in difficulty as you improve.

❀️

Lives & Rewarded Boosts

Five lives that refill over time. Out of lives? Watch an optional rewarded ad to top back up and keep your run going.

πŸ†

Global Leaderboards

Compete on Google Play Games for the fastest daily solves and longest streaks. Sign-in is optional.

πŸ””

Streak Reminders

Optional on-device notifications nudge you before a streak expires or when your lives refill. Scheduled locally β€” nothing tracked.

Privacy Focused: No account required β€’ Local on-device data β€’ Optional Play Games sign-in
Spillway
v12.1.0 β€” iOS β€’ Android β€’ macOS β€’ Windows

Biometric Signature

Create cryptographic signatures using device biometrics with keys stored in Secure Enclave (iOS/macOS), StrongBox/Keystore (Android), and TPM (Windows).

View on Pub.dev
RSA + EC
Key Algorithms
4
Platforms Supported
ECIES
Hybrid Encryption
100%
Hardware Secured

Bank-Grade Security. Developer-Friendly API.

πŸ”

Hardware Security

Keys are generated and stored in Secure Enclave (iOS/macOS) and StrongBox/Keystore (Android). Private keys never leave the secure hardware.

✍️

Cryptographic Signatures

Create RSA-2048 or ECDSA (P-256) signatures that your backend can independently verify. True proof of identity.

πŸ”“

ECIES Decryption

Decrypt sensitive data using hybrid ECIES encryption with X9.63 key derivation, SHA-256, and AES-GCM.

πŸ‘†

Biometric Authentication

Seamless integration with FaceID, TouchID, and Android BiometricPrompt. Native UI on every platform.

🚫

Key Invalidation

Optionally invalidate keys when biometric enrollment changes. Detect if fingerprints or Face ID have been modified.

πŸ”’

Device Credential Fallback

Allow PIN, pattern, or password fallback on Android when biometrics are unavailable.

Multi-Platform Support

🍎

iOS

  • βœ“ Secure Enclave
  • βœ“ Face ID & Touch ID
  • βœ“ RSA & ECDSA signing
  • βœ“ Keychain storage
πŸ€–

Android

  • βœ“ StrongBox / Keystore
  • βœ“ BiometricPrompt API
  • βœ“ Device credential fallback
  • βœ“ Custom UI options
πŸ’»

macOS

  • βœ“ Secure Enclave
  • βœ“ Touch ID support
  • βœ“ ECDSA P-256 keys
  • βœ“ Keychain integration
πŸͺŸ

Windows

  • βœ“ TPM hardware backing
  • βœ“ Windows Hello
  • βœ“ ECDSA P-256 signing
  • βœ“ PIN fallback support

Simple Workflow

01

Create Keys

Generate hardware-backed key pair with biometric protection.

02

Register Public Key

Send the public key to your backend for future verification.

03

Sign Data

User authenticates, hardware signs the payload.

04

Verify Signature

Backend verifies the signature using the stored public key.

Clean, Intuitive API

Integrate secure biometric signatures in minutes with our well-documented API. Full platform customization when you need it.

  • βœ“
    Type-safe Dart API with null safety
  • βœ“
    Platform-specific configuration options
  • βœ“
    Comprehensive error handling
  • βœ“
    Backend examples in Node.js, Python & Go
create_keys.dart
// Create biometric-protected keys
final result = await BiometricSignature()
  .createKeys(
    enforceBiometric: true,
    promptMessage: "Authenticate to register",
  );

if (result != null) {
  // Send public key to your backend
  await api.registerPublicKey(result.publicKey);
}
sign_data.dart
// Sign a challenge from your server
final signature = await BiometricSignature()
  .createSignature(
    options: SignatureOptions(
      payload: serverChallenge,
      promptMessage: "Confirm transaction",
    ),
  );

// Send signature to backend for verification