├── .github └── workflows │ └── main.yml ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── artifacts └── web │ ├── .last_build_id │ ├── assets │ ├── AssetManifest.bin │ ├── AssetManifest.json │ ├── FontManifest.json │ ├── NOTICES │ ├── fonts │ │ └── MaterialIcons-Regular.otf │ ├── packages │ │ └── cupertino_icons │ │ │ └── assets │ │ │ └── CupertinoIcons.ttf │ └── shaders │ │ └── ink_sparkle.frag │ ├── canvaskit │ ├── canvaskit.js │ ├── canvaskit.wasm │ ├── chromium │ │ ├── canvaskit.js │ │ └── canvaskit.wasm │ ├── skwasm.js │ ├── skwasm.wasm │ └── skwasm.worker.js │ ├── favicon.png │ ├── flutter.js │ ├── flutter_service_worker.js │ ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png │ ├── index.html │ ├── main.dart.js │ ├── manifest.json │ └── version.json ├── createandcopytofolder.sh ├── lib ├── main.dart ├── models │ ├── card_item.dart │ └── game.dart ├── the_memory_match_game.dart ├── ui │ ├── pages │ │ ├── memory_match_page.dart │ │ └── startup_page.dart │ └── widgets │ │ ├── game_button.dart │ │ ├── game_confetti.dart │ │ ├── game_controls_bottomsheet.dart │ │ ├── game_options.dart │ │ ├── memory_card.dart │ │ ├── mobile │ │ ├── game_best_time_mobile.dart │ │ ├── game_board_mobile.dart │ │ └── game_timer_mobile.dart │ │ ├── restart_game.dart │ │ └── web │ │ ├── game_best_time.dart │ │ ├── game_board.dart │ │ └── game_timer.dart └── utils │ ├── constants.dart │ └── icons.dart ├── pubspec.lock ├── pubspec.yaml └── web ├── favicon.png ├── icons ├── Icon-192.png ├── Icon-512.png ├── Icon-maskable-192.png └── Icon-maskable-512.png ├── index.html └── manifest.json /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /artifacts/web/.last_build_id: -------------------------------------------------------------------------------- 1 | cc299103c04a75854d1b9fd4b2ae2a8b -------------------------------------------------------------------------------- /artifacts/web/assets/AssetManifest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/assets/AssetManifest.bin -------------------------------------------------------------------------------- /artifacts/web/assets/AssetManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/assets/AssetManifest.json -------------------------------------------------------------------------------- /artifacts/web/assets/FontManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/assets/FontManifest.json -------------------------------------------------------------------------------- /artifacts/web/assets/NOTICES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/assets/NOTICES -------------------------------------------------------------------------------- /artifacts/web/assets/fonts/MaterialIcons-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/assets/fonts/MaterialIcons-Regular.otf -------------------------------------------------------------------------------- /artifacts/web/assets/packages/cupertino_icons/assets/CupertinoIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/assets/packages/cupertino_icons/assets/CupertinoIcons.ttf -------------------------------------------------------------------------------- /artifacts/web/assets/shaders/ink_sparkle.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/assets/shaders/ink_sparkle.frag -------------------------------------------------------------------------------- /artifacts/web/canvaskit/canvaskit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/canvaskit/canvaskit.js -------------------------------------------------------------------------------- /artifacts/web/canvaskit/canvaskit.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/canvaskit/canvaskit.wasm -------------------------------------------------------------------------------- /artifacts/web/canvaskit/chromium/canvaskit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/canvaskit/chromium/canvaskit.js -------------------------------------------------------------------------------- /artifacts/web/canvaskit/chromium/canvaskit.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/canvaskit/chromium/canvaskit.wasm -------------------------------------------------------------------------------- /artifacts/web/canvaskit/skwasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/canvaskit/skwasm.js -------------------------------------------------------------------------------- /artifacts/web/canvaskit/skwasm.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/canvaskit/skwasm.wasm -------------------------------------------------------------------------------- /artifacts/web/canvaskit/skwasm.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/canvaskit/skwasm.worker.js -------------------------------------------------------------------------------- /artifacts/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/favicon.png -------------------------------------------------------------------------------- /artifacts/web/flutter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/flutter.js -------------------------------------------------------------------------------- /artifacts/web/flutter_service_worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/flutter_service_worker.js -------------------------------------------------------------------------------- /artifacts/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/icons/Icon-192.png -------------------------------------------------------------------------------- /artifacts/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/icons/Icon-512.png -------------------------------------------------------------------------------- /artifacts/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /artifacts/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /artifacts/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/index.html -------------------------------------------------------------------------------- /artifacts/web/main.dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/main.dart.js -------------------------------------------------------------------------------- /artifacts/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/manifest.json -------------------------------------------------------------------------------- /artifacts/web/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/artifacts/web/version.json -------------------------------------------------------------------------------- /createandcopytofolder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/createandcopytofolder.sh -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/models/card_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/lib/models/card_item.dart -------------------------------------------------------------------------------- /lib/models/game.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/lib/models/game.dart -------------------------------------------------------------------------------- /lib/the_memory_match_game.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/lib/the_memory_match_game.dart -------------------------------------------------------------------------------- /lib/ui/pages/memory_match_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/lib/ui/pages/memory_match_page.dart -------------------------------------------------------------------------------- /lib/ui/pages/startup_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/lib/ui/pages/startup_page.dart -------------------------------------------------------------------------------- /lib/ui/widgets/game_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/lib/ui/widgets/game_button.dart -------------------------------------------------------------------------------- /lib/ui/widgets/game_confetti.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/lib/ui/widgets/game_confetti.dart -------------------------------------------------------------------------------- /lib/ui/widgets/game_controls_bottomsheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/lib/ui/widgets/game_controls_bottomsheet.dart -------------------------------------------------------------------------------- /lib/ui/widgets/game_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/lib/ui/widgets/game_options.dart -------------------------------------------------------------------------------- /lib/ui/widgets/memory_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/lib/ui/widgets/memory_card.dart -------------------------------------------------------------------------------- /lib/ui/widgets/mobile/game_best_time_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/lib/ui/widgets/mobile/game_best_time_mobile.dart -------------------------------------------------------------------------------- /lib/ui/widgets/mobile/game_board_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/lib/ui/widgets/mobile/game_board_mobile.dart -------------------------------------------------------------------------------- /lib/ui/widgets/mobile/game_timer_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/lib/ui/widgets/mobile/game_timer_mobile.dart -------------------------------------------------------------------------------- /lib/ui/widgets/restart_game.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/lib/ui/widgets/restart_game.dart -------------------------------------------------------------------------------- /lib/ui/widgets/web/game_best_time.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/lib/ui/widgets/web/game_best_time.dart -------------------------------------------------------------------------------- /lib/ui/widgets/web/game_board.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/lib/ui/widgets/web/game_board.dart -------------------------------------------------------------------------------- /lib/ui/widgets/web/game_timer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/lib/ui/widgets/web/game_timer.dart -------------------------------------------------------------------------------- /lib/utils/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/lib/utils/constants.dart -------------------------------------------------------------------------------- /lib/utils/icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/lib/utils/icons.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offlineprogrammer/the_memory_match_game/HEAD/web/manifest.json --------------------------------------------------------------------------------