- One-Tap Controls - Simple yet challenging gravity-flip mechanics
- Smooth 60 FPS Gameplay - Optimized performance for all devices
- Power-Up System - Shield, Slow-Mo, Shrink, and Double Points
- Coin Economy - Collect coins to purchase power-ups mid-game
- Customizable Ball Skins - Unlock unique gradient designs
- High Score Tracking - Beat your personal best
- Settings - Adjust sound effects and customize experience
- Visual Effects - Particle explosions, tap ripples, and smooth animations
- Tap anywhere on the screen to flip gravity
- Dodge obstacles by controlling the ball's vertical position
- Collect coins to purchase power-ups
- Use power-ups strategically to survive longer
- Beat your high score and challenge yourself!
| Icon | Name | Effect | Cost |
|---|---|---|---|
| 🛡️ | Shield | Protects from one collision for 7 seconds | 5 coins |
| ⏱️ | Slow-Mo | Slows down time for 5 seconds | 3 coins |
| 🔽 | Shrink | Makes ball smaller for 5 seconds | 3 coins |
| ⭐ | Double Points | 2x score multiplier for 5 seconds | 4 coins |
- Flutter SDK (3.0+)
- Android Studio or VS Code
- Git
-
Clone the repository
git clone https://github.com/yourusername/fliprush.git cd fliprush -
Install dependencies
flutter pub get
-
Run the app
flutter run
# Build release APK
flutter build apk --release
# Build split APKs (recommended for smaller file size)
flutter build apk --split-per-abi --release
# Output location: build/app/outputs/flutter-apk/fliprush/
├── lib/
│ └── main.dart # Main application code
├── assets/
│ ├── sounds/ # Sound effects
│ │ ├── flip.mp3
│ │ ├── explosion.mp3
│ │ ├── coin.mp3
│ │ ├── powerup.mp3
│ │ └── slowmo.mp3
│ └── icon.png # App icon
├── android/ # Android-specific files
├── docs/ # Documentation
│ ├── OPTIMIZATION_REPORT.md
│ ├── STAND_OUT_FEATURES.md
│ └── IMPLEMENTATION_GUIDE.md
├── pubspec.yaml # Dependencies
└── README.md # This file
dependencies:
flutter:
sdk: flutter
google_fonts: ^6.2.1 # Custom typography
audioplayers: ^6.0.0 # Sound effects
dev_dependencies:
flutter_launcher_icons: ^0.13.1 # App icon generation- Ball Skins: Edit
ballSkinslist inmain.dart - Obstacle Colors: Modify
obstacleColorslist - Power-Up Prices: Adjust
powerUpPricesmap - Game Speed: Change
obstacleSpeedandvelocityvalues
-
Sound Effects (place in
assets/sounds/)flip.mp3- Gravity flip soundexplosion.mp3- Death soundcoin.mp3- Coin collectionpowerup.mp3- Power-up pickupslowmo.mp3- Slow-mo activation
-
App Icon
assets/icon.png- 1024x1024px PNG
- None currently reported
Found a bug? Open an issue
- Removed background music system
- Removed ball trail effect
- Fixed coin sound (now plays on collection)
- Fixed slow-mo sound effect
- Code optimization (removed unused functions)
- Performance improvements
- Initial release
- Core gravity-flip mechanics
- Power-up system
- Coin economy
- Ball skins
See CHANGELOG.md for complete version history.
This project is licensed under the MIT License - see the LICENSE file for details.
MIT License
Copyright (c) 2025 Siddhartha Gupta
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Siddhartha Gupta VIT Chennai - Android Club
- Flutter team for the amazing framework
- Google Fonts for typography
- AudioPlayers package maintainers
- Android Club at VIT Chennai
Made with ❤️ and Flutter




