A fun and addictive Flutter idle clicker game with stunning neon aesthetics. Tap your way to victory and become the ultimate ball bounce champion!
Unlock achievements as you progress:
git clone https://github.com/govindtank/ball-bounce-clicker.git
cd ball-bounce-clicker
flutter pub get
flutter run
# Development build
flutter build web
# Production build with base-href
flutter build web --release --base-href /ball-bounce-clicker/
lib/
├── main.dart # App entry point
├── core/
│ ├── constants/
│ │ └── app_constants.dart # Colors, physics, animation constants
│ └── utils/
│ └── vector2d.dart # 2D vector for physics calculations
├── features/
│ ├── game/
│ │ ├── models/
│ │ │ └── game_state.dart # Game state management
│ │ ├── screens/
│ │ │ └── game_screen.dart # Main game screen
│ │ └── widgets/
│ │ ├── ball_widget.dart # Ball rendering widget
│ │ ├── particle_effect.dart # Tap particle effects
│ │ └── score_display.dart # Animated score display
│ └── ui/
│ └── theme.dart # App theme configuration
└── services/
└── save_manager.dart # Save/load functionality
| Technology | Description |
|---|---|
| Flutter | Cross-platform UI framework |
| Dart | Programming language |
| Provider | State management |
| SharedPreferences | Local data persistence |
| Material 3 | Design system |
| Color | Hex Code | Usage |
|---|---|---|
| Deep Purple | #7C4DFF |
Primary color |
| Neon Pink | #FF6B9D |
Secondary/accent |
| Cyan | #00F5FF |
Highlight effects |
| Electric Green | #39FF14 |
Multiplier indicator |
| Dark Background | #0D0D1A |
Background color |
git checkout -b feature/AmazingFeature)git commit -m 'Add AmazingFeature')git push origin feature/AmazingFeature)This project is licensed under the MIT License - see the LICENSE file for details.
Govind Tank
Made with ❤️ using Flutter