{"id":51039589,"url":"https://github.com/whywaita/flipout","last_synced_at":"2026-06-22T09:32:40.366Z","repository":{"id":356115244,"uuid":"1143573009","full_name":"whywaita/flipout","owner":"whywaita","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-06T18:01:47.000Z","size":10618,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-06T18:36:26.784Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://whywaita.github.io/flipout/","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/whywaita.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["whywaita"]}},"created_at":"2026-01-27T18:41:13.000Z","updated_at":"2026-05-06T17:59:57.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/whywaita/flipout","commit_stats":null,"previous_names":["whywaita/flipout"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/whywaita/flipout","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whywaita%2Fflipout","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whywaita%2Fflipout/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whywaita%2Fflipout/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whywaita%2Fflipout/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/whywaita","download_url":"https://codeload.github.com/whywaita/flipout/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whywaita%2Fflipout/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34643614,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-22T02:00:06.391Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-22T09:32:39.378Z","updated_at":"2026-06-22T09:32:40.356Z","avatar_url":"https://github.com/whywaita.png","language":"Dart","funding_links":["https://github.com/sponsors/whywaita"],"categories":[],"sub_categories":[],"readme":"# Flip-Out\n\n**NLH Flip-Out Web Application with River Squeeze**\n\nA No-Limit Hold'em (NLH) flip-out tool designed for quick, in-person use. Built with Flutter Web for optimal mobile experience.\n\n## Features\n\n- 🎲 **2-8 Players Support**: Flexible player count management\n- 📊 **Equity Calculation**: Real-time win probability display at Preflop, Flop, and Turn\n- 🎴 **River Squeeze Animation**: Baccarat-style card reveal experience (critical feature)\n- 🎯 **Hand Highlighting**: Automatic identification of winning 5-card hands\n- ⚙️ **Customizable Settings**: Player names and card color modes (2-color/4-color)\n- 💾 **Persistent Settings**: LocalStorage-based configuration\n- 📱 **Mobile-First Design**: Optimized for smartphone usage\n\n## Technology Stack\n\n- **Flutter Web**: For cross-platform web application\n- **Dart**: Programming language\n- **poker package**: For equity calculation and hand evaluation\n- **Provider**: State management\n- **SharedPreferences**: Local storage\n\n## Game Flow (State Machine)\n\n1. **S0 (Ready)**: No cards dealt\n2. **S1 (Preflop)**: Hole cards dealt, equity shown\n3. **S2 (Flop)**: 3 community cards revealed, equity shown\n4. **S3 (Turn)**: 4th community card revealed, equity shown\n5. **S4 (River Squeeze)**: River card hidden, squeeze interaction enabled\n6. **S5 (Showdown)**: River revealed, winners highlighted\n\n## Development\n\n### Prerequisites\n\n- Flutter SDK 3.19.0 or higher\n- Dart SDK 3.0.0 or higher\n\n### Setup\n\n```bash\n# Install dependencies\nflutter pub get\n\n# Run in development mode\nflutter run -d chrome\n\n# Build for production\nflutter build web --release\n```\n\n### Project Structure\n\n```\nlib/\n├── controllers/        # Game logic and state management\n│   └── game_controller.dart\n├── models/            # Data models\n│   ├── game_state.dart\n│   ├── player.dart\n│   └── settings.dart\n├── screens/           # UI screens\n│   ├── main_screen.dart\n│   └── settings_screen.dart\n├── services/          # Business logic services\n│   ├── deck_service.dart\n│   ├── equity_service.dart\n│   ├── hand_evaluator_service.dart\n│   └── storage_service.dart\n├── widgets/           # Reusable UI components\n│   ├── playing_card.dart\n│   └── river_squeeze.dart\n└── main.dart          # Application entry point\n```\n\n## Deployment\n\nThis application is automatically deployed to GitHub Pages via GitHub Actions.\n\n### Manual Deployment\n\n```bash\n# Build for GitHub Pages\nflutter build web --release --base-href /flipout/\n\n# The output will be in build/web/\n```\n\n## Requirements\n\nSee [docs/rdd.md](docs/rdd.md) for the detailed requirements specification.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhywaita%2Fflipout","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwhywaita%2Fflipout","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhywaita%2Fflipout/lists"}