A Flutter grid strategy game where teams compete to claim cells and control the board. The app is designed for quick local multiplayer sessions with configurable teams, colors, and board sizes.
- Team-based cell claiming gameplay.
- Configurable team names, colors, and team count.
- Multiple grid sizes for short or longer matches.
- Arabic interface and Arabic numerals.
- Fullscreen desktop experience.
- Responsive UI for different screen sizes.
- Lightweight Flutter codebase with a clear screen-based structure.
- Flutter and Dart.
google_fontsfor typography.window_managerfor desktop fullscreen and window behavior.
lib/
├── main.dart # App bootstrap and desktop window setup
└── screens/
├── settings_screen.dart # Team and board configuration
└── game_screen.dart # Main grid gameplay
git clone https://github.com/A-Altanahy/trabee3.git
cd trabee3
flutter pub get
flutter run -d windowsFor another available target:
flutter run -d chrome
flutter run -d macos
flutter run -d linuxflutter testThis project demonstrates a compact Flutter game loop, configurable UI state, responsive layout decisions, and desktop-friendly interaction design.