├── linux ├── .gitignore ├── main.cc ├── flutter │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ ├── generated_plugins.cmake │ └── CMakeLists.txt ├── my_application.h ├── my_application.cc └── CMakeLists.txt ├── ios ├── Flutter │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── AppFrameworkInfo.plist ├── Runner │ ├── Runner-Bridging-Header.h │ ├── Assets.xcassets │ │ ├── LaunchImage.imageset │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ ├── README.md │ │ │ └── Contents.json │ │ └── AppIcon.appiconset │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ └── Contents.json │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── Main.storyboard │ │ └── LaunchScreen.storyboard │ └── Info.plist ├── Runner.xcodeproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ └── IDEWorkspaceChecks.plist │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ └── project.pbxproj ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── WorkspaceSettings.xcsettings │ │ └── IDEWorkspaceChecks.plist ├── RunnerTests │ └── RunnerTests.swift └── .gitignore ├── macos ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Runner │ ├── Configs │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ ├── Warnings.xcconfig │ │ └── AppInfo.xcconfig │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_64.png │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_512.png │ │ │ └── Contents.json │ ├── AppDelegate.swift │ ├── Release.entitlements │ ├── DebugProfile.entitlements │ ├── MainFlutterWindow.swift │ ├── Info.plist │ └── Base.lproj │ │ └── MainMenu.xib ├── .gitignore ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Runner.xcodeproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme └── RunnerTests │ └── RunnerTests.swift ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── manifest.json └── index.html ├── lib ├── screenshots │ ├── o_wins.png │ ├── game_over.png │ ├── main_menu.png │ ├── game_history.png │ ├── player_names.png │ └── single_player.png ├── theme │ ├── colors.dart │ └── app_sizes.dart ├── model │ ├── history_hive_model.dart │ └── history_hive_model.g.dart ├── storage │ └── history_box.dart ├── widgets │ ├── history_modal.dart │ ├── wrapper_container.dart │ ├── alert_dialog.dart │ ├── button_widget.dart │ ├── scoreboard.dart │ └── history_list.dart ├── game_logic │ ├── minimax.dart │ └── check_result.dart ├── providers │ └── game_providers.dart ├── main.dart └── screens │ ├── game_base_screen.dart │ ├── main_menu.dart │ ├── players_names_screen.dart │ └── game_screen.dart ├── android ├── gradle.properties ├── app │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── values │ │ │ │ │ └── styles.xml │ │ │ │ └── values-night │ │ │ │ │ └── styles.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── tictactoe │ │ │ │ │ └── flutter_tic_tac_toe │ │ │ │ │ └── MainActivity.kt │ │ │ └── AndroidManifest.xml │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ └── profile │ │ │ └── AndroidManifest.xml │ └── build.gradle ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── .gitignore ├── build.gradle └── settings.gradle ├── assets └── PermanentMarker-Regular.ttf ├── windows ├── runner │ ├── resources │ │ └── app_icon.ico │ ├── resource.h │ ├── utils.h │ ├── runner.exe.manifest │ ├── flutter_window.h │ ├── main.cpp │ ├── CMakeLists.txt │ ├── flutter_window.cpp │ ├── utils.cpp │ ├── Runner.rc │ ├── win32_window.h │ └── win32_window.cpp ├── flutter │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ ├── generated_plugins.cmake │ └── CMakeLists.txt ├── .gitignore └── CMakeLists.txt ├── .gitignore ├── test └── widget_test.dart ├── analysis_options.yaml ├── .metadata ├── README.md └── pubspec.yaml /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /lib/screenshots/o_wins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/lib/screenshots/o_wins.png -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Debug.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /lib/screenshots/game_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/lib/screenshots/game_over.png -------------------------------------------------------------------------------- /lib/screenshots/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/lib/screenshots/main_menu.png -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Release.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /lib/screenshots/game_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/lib/screenshots/game_history.png -------------------------------------------------------------------------------- /lib/screenshots/player_names.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/lib/screenshots/player_names.png -------------------------------------------------------------------------------- /lib/screenshots/single_player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/lib/screenshots/single_player.png -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- 1 | # Flutter-related 2 | **/Flutter/ephemeral/ 3 | **/Pods/ 4 | 5 | # Xcode-related 6 | **/dgph 7 | **/xcuserdata/ 8 | -------------------------------------------------------------------------------- /assets/PermanentMarker-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/assets/PermanentMarker-Regular.ttf -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SouhailKrs/Flutter-Tic-Tac-Toe/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- 1 | #include "my_application.h" 2 | 3 | int main(int argc, char **argv) { 4 | g_autoptr(MyApplication) 5 | app = my_application_new(); 6 | return g_application_run(G_APPLICATION(app), argc, argv); 7 | } 8 | -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/tictactoe/flutter_tic_tac_toe/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.tictactoe.flutter_tic_tac_toe 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity : FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | // clang-format off 6 | 7 | #include "generated_plugin_registrant.h" 8 | 9 | 10 | void fl_register_plugins(FlPluginRegistry *registry) { 11 | } 12 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip 6 | -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | // clang-format off 6 | 7 | #include "generated_plugin_registrant.h" 8 | 9 | 10 | void RegisterPlugins(flutter::PluginRegistry *registry) { 11 | } 12 | -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import Cocoa 2 | import FlutterMacOS 3 | 4 | @NSApplicationMain 5 | class AppDelegate: FlutterAppDelegate { 6 | override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { 7 | return true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | 9 | # Remember to never publicly share your keystore. 10 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app 11 | key.properties 12 | **/*.keystore 13 | **/*.jks 14 | -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | import FlutterMacOS 6 | import Foundation 7 | 8 | import path_provider_foundation 9 | 10 | func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { 11 | PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin")) 12 | } 13 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- 1 | import Flutter 2 | import UIKit 3 | import XCTest 4 | 5 | class RunnerTests: XCTestCase { 6 | 7 | func testExample() { 8 | // If you add code to the Runner application, consider adding tests here. 9 | // See https://developer.apple.com/documentation/xctest for more information about using XCTest. 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- 1 | import FlutterMacOS 2 | import Cocoa 3 | import XCTest 4 | 5 | class RunnerTests: XCTestCase { 6 | 7 | func testExample() { 8 | // If you add code to the Runner application, consider adding tests here. 9 | // See https://developer.apple.com/documentation/xctest for more information about using XCTest. 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral/ 2 | 3 | # Visual Studio user-specific files. 4 | *.suo 5 | *.user 6 | *.userosscache 7 | *.sln.docstates 8 | 9 | # Visual Studio build-related files. 10 | x64/ 11 | x86/ 12 | 13 | # Visual Studio cache files 14 | # files ending in .cache can be ignored 15 | *.[Cc]ache 16 | # but keep track of directories ending in .cache 17 | !*.[Cc]ache/ 18 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | allprojects { 2 | repositories { 3 | google() 4 | jcenter() 5 | } 6 | } 7 | 8 | rootProject.buildDir = '../build' 9 | subprojects { 10 | project.buildDir = "${rootProject.buildDir}/${project.name}" 11 | } 12 | subprojects { 13 | project.evaluationDependsOn(':app') 14 | } 15 | 16 | tasks.register("clean", Delete) { 17 | delete rootProject.buildDir 18 | } -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in 4 | this directory. 5 | 6 | You can also do it by opening your Flutter project's Xcode project 7 | with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and 8 | dropping in the desired images. -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | // clang-format off 6 | 7 | #ifndef GENERATED_PLUGIN_REGISTRANT_ 8 | #define GENERATED_PLUGIN_REGISTRANT_ 9 | 10 | #include 11 | 12 | // Registers Flutter plugins. 13 | void fl_register_plugins(FlPluginRegistry *registry); 14 | 15 | #endif // GENERATED_PLUGIN_REGISTRANT_ 16 | -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | // clang-format off 6 | 7 | #ifndef GENERATED_PLUGIN_REGISTRANT_ 8 | #define GENERATED_PLUGIN_REGISTRANT_ 9 | 10 | #include 11 | 12 | // Registers Flutter plugins. 13 | void RegisterPlugins(flutter::PluginRegistry *registry); 14 | 15 | #endif // GENERATED_PLUGIN_REGISTRANT_ 16 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | com.apple.security.cs.allow-jit 8 | 9 | com.apple.security.network.server 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- 1 | #ifndef FLUTTER_MY_APPLICATION_H_ 2 | #define FLUTTER_MY_APPLICATION_H_ 3 | 4 | #include 5 | 6 | G_DECLARE_FINAL_TYPE(MyApplication, my_application, MY, APPLICATION, 7 | GtkApplication 8 | ) 9 | 10 | /** 11 | * my_application_new: 12 | * 13 | * Creates a new Flutter-based application. 14 | * 15 | * Returns: a new #MyApplication. 16 | */ 17 | MyApplication *my_application_new(); 18 | 19 | #endif // FLUTTER_MY_APPLICATION_H_ 20 | -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- 1 | import Cocoa 2 | import FlutterMacOS 3 | 4 | class MainFlutterWindow: NSWindow { 5 | override func awakeFromNib() { 6 | let flutterViewController = FlutterViewController() 7 | let windowFrame = self.frame 8 | self.contentViewController = flutterViewController 9 | self.setFrame(windowFrame, display: true) 10 | 11 | RegisterGeneratedPlugins(registry: flutterViewController) 12 | 13 | super.awakeFromNib() 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by Runner.rc 4 | // 5 | #define IDI_APP_ICON 101 6 | 7 | // Next default values for new objects 8 | // 9 | #ifdef APSTUDIO_INVOKED 10 | #ifndef APSTUDIO_READONLY_SYMBOLS 11 | #define _APS_NEXT_RESOURCE_VALUE 102 12 | #define _APS_NEXT_COMMAND_VALUE 40001 13 | #define _APS_NEXT_CONTROL_VALUE 1001 14 | #define _APS_NEXT_SYMED_VALUE 101 15 | #endif 16 | #endif 17 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "universal", 5 | "filename": "LaunchImage.png", 6 | "scale": "1x" 7 | }, 8 | { 9 | "idiom": "universal", 10 | "filename": "LaunchImage@2x.png", 11 | "scale": "2x" 12 | }, 13 | { 14 | "idiom": "universal", 15 | "filename": "LaunchImage@3x.png", 16 | "scale": "3x" 17 | } 18 | ], 19 | "info": { 20 | "version": 1, 21 | "author": "xcode" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lib/theme/colors.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class GameColors { 4 | static const kPurple = Color(0xffaf73fd); 5 | static const kBackground = Color(0xff48596e); 6 | static const kWhitish = Color(0xffF4F4F4); 7 | static const kBlue = Color(0xff1f64d7); 8 | static const kForeground = Color(0xff0d1114); 9 | static const kLighterForeground = Color(0xff3c4e5c); 10 | static const kGrey = Color(0xffd1d5dc); 11 | static const kGradient1 = Color(0xff28313D); 12 | static const kGradient2 = Color(0xff303b49); 13 | } 14 | -------------------------------------------------------------------------------- /lib/theme/app_sizes.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:gap/gap.dart'; 3 | 4 | Gap gapXs() => const Gap(2); 5 | 6 | Gap gapS() => const Gap(4); 7 | 8 | Gap gapM() => const Gap(8); 9 | 10 | Gap gapL() => const Gap(16); 11 | 12 | Gap gapXL() => const Gap(24); 13 | 14 | Gap gap2XL() => const Gap(32); 15 | 16 | Gap gap3XL() => const Gap(48); 17 | 18 | Gap gap4XL() => const Gap(64); 19 | 20 | 21 | 22 | borderRadiusXs() => BorderRadius.circular(4); 23 | 24 | borderRadiusS() => BorderRadius.circular(8); 25 | 26 | borderRadiusM() => BorderRadius.circular(12); 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- 1 | WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings 2 | GCC_WARN_UNDECLARED_SELECTOR = YES 3 | CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES 4 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE 5 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES 6 | CLANG_WARN_PRAGMA_PACK = YES 7 | CLANG_WARN_STRICT_PROTOTYPES = YES 8 | CLANG_WARN_COMMA = YES 9 | GCC_WARN_STRICT_SELECTOR_MATCH = YES 10 | CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES 11 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES 12 | GCC_WARN_SHADOW = YES 13 | CLANG_WARN_UNREACHABLE_CODE = YES 14 | -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- 1 | // Application-level settings for the Runner target. 2 | // 3 | // This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the 4 | // future. If not, the values below would default to using the project name when this becomes a 5 | // 'flutter create' template. 6 | 7 | // The application's name. By default this is also the title of the Flutter window. 8 | PRODUCT_NAME = flutter_tic_tac_toe 9 | 10 | // The application's bundle identifier 11 | PRODUCT_BUNDLE_IDENTIFIER = com.tictactoe.flutterTicTacToe 12 | 13 | // The copyright displayed in application information 14 | PRODUCT_COPYRIGHT = Copyright © 2023 com.tictactoe. All rights reserved. 15 | -------------------------------------------------------------------------------- /lib/model/history_hive_model.dart: -------------------------------------------------------------------------------- 1 | import 'package:hive/hive.dart'; 2 | 3 | part 'history_hive_model.g.dart'; 4 | 5 | @HiveType(typeId: 0) 6 | class HistoryModelHive { 7 | HistoryModelHive({ 8 | required this.playerXName, 9 | required this.playerOName, 10 | required this.winner, 11 | DateTime? date, 12 | }) : date = date ?? DateTime.now(); 13 | 14 | @HiveField(1) 15 | String playerXName; 16 | @HiveField(2) 17 | String playerOName; 18 | @HiveField(3) 19 | String? winner; 20 | @HiveField(4) 21 | DateTime date; 22 | 23 | @override 24 | String toString() { 25 | return 'HistoryModelHive{playerXName: $playerXName, playerOName: $playerOName, winner: $winner, date: $date}'; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- 1 | **/dgph 2 | *.mode1v3 3 | *.mode2v3 4 | *.moved-aside 5 | *.pbxuser 6 | *.perspectivev3 7 | **/*sync/ 8 | .sconsign.dblite 9 | .tags* 10 | **/.vagrant/ 11 | **/DerivedData/ 12 | Icon? 13 | **/Pods/ 14 | **/.symlinks/ 15 | profile 16 | xcuserdata 17 | **/.generated/ 18 | Flutter/App.framework 19 | Flutter/Flutter.framework 20 | Flutter/Flutter.podspec 21 | Flutter/Generated.xcconfig 22 | Flutter/ephemeral/ 23 | Flutter/app.flx 24 | Flutter/app.zip 25 | Flutter/flutter_assets/ 26 | Flutter/flutter_export_environment.sh 27 | ServiceDefinitions.json 28 | Runner/GeneratedPluginRegistrant.* 29 | 30 | # Exceptions to above rules. 31 | !default.mode1v3 32 | !default.mode2v3 33 | !default.pbxuser 34 | !default.perspectivev3 35 | -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- 1 | #ifndef RUNNER_UTILS_H_ 2 | #define RUNNER_UTILS_H_ 3 | 4 | #include 5 | #include 6 | 7 | // Creates a console for the process, and redirects stdout and stderr to 8 | // it for both the runner and the Flutter library. 9 | void CreateAndAttachConsole(); 10 | 11 | // Takes a null-terminated wchar_t* encoded in UTF-16 and returns a std::string 12 | // encoded in UTF-8. Returns an empty std::string on failure. 13 | std::string Utf8FromUtf16(const wchar_t *utf16_string); 14 | 15 | // Gets the command line arguments passed in as a std::vector, 16 | // encoded in UTF-8. Returns an empty std::vector on failure. 17 | std::vector GetCommandLineArguments(); 18 | 19 | #endif // RUNNER_UTILS_H_ 20 | -------------------------------------------------------------------------------- /lib/storage/history_box.dart: -------------------------------------------------------------------------------- 1 | import 'package:hive/hive.dart'; 2 | 3 | import '../model/history_hive_model.dart'; 4 | 5 | class HistoryBox { 6 | static const String historyBox = 'history_box'; 7 | 8 | static Future openBox() async { 9 | await Hive.openBox(historyBox); 10 | } 11 | 12 | static Box getHistoryBox() { 13 | final box = Hive.box(historyBox); 14 | return box; 15 | } 16 | 17 | static void setHistory(HistoryModelHive history) { 18 | final historyBox = getHistoryBox(); 19 | historyBox.add(history); 20 | } 21 | 22 | static List getHistory() { 23 | final historyBox = getHistoryBox(); 24 | final historyList = historyBox.values.toList(); 25 | return historyList; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | def flutterSdkPath = { 3 | def properties = new Properties() 4 | file("local.properties").withInputStream { properties.load(it) } 5 | def flutterSdkPath = properties.getProperty("flutter.sdk") 6 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties" 7 | return flutterSdkPath 8 | }() 9 | 10 | includeBuild("$flutterSdkPath/packages/flutter_tools/gradle") 11 | 12 | repositories { 13 | google() 14 | mavenCentral() 15 | gradlePluginPortal() 16 | } 17 | } 18 | 19 | plugins { 20 | id "dev.flutter.flutter-plugin-loader" version "1.0.0" 21 | id "com.android.application" version "7.2.0" apply false 22 | id "org.jetbrains.kotlin.android" version "1.7.20" apply false 23 | } 24 | 25 | include ":app" -------------------------------------------------------------------------------- /lib/widgets/history_modal.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_tic_tac_toe/theme/colors.dart'; 3 | import 'package:flutter_tic_tac_toe/widgets/history_list.dart'; 4 | 5 | void buildHistoryBottomSheet(BuildContext context) { 6 | showModalBottomSheet( 7 | backgroundColor: GameColors.kLighterForeground, 8 | shape: const RoundedRectangleBorder( 9 | borderRadius: BorderRadius.vertical( 10 | top: Radius.circular(15.0), 11 | ), 12 | ), 13 | elevation: 0, 14 | isScrollControlled: true, 15 | context: context, 16 | builder: (context) { 17 | return const SizedBox( 18 | height: 500, 19 | child: Padding( 20 | padding: EdgeInsets.all(8.0), 21 | child: HistoryListView(), 22 | ), 23 | ); 24 | }, 25 | ); 26 | } 27 | -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- 1 | # 2 | # Generated file, do not edit. 3 | # 4 | 5 | list(APPEND FLUTTER_PLUGIN_LIST 6 | ) 7 | 8 | list(APPEND FLUTTER_FFI_PLUGIN_LIST 9 | ) 10 | 11 | set(PLUGIN_BUNDLED_LIBRARIES) 12 | 13 | foreach (plugin ${FLUTTER_PLUGIN_LIST}) 14 | add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin}) 15 | target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) 16 | list(APPEND PLUGIN_BUNDLED_LIBRARIES $) 17 | list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) 18 | endforeach (plugin) 19 | 20 | foreach (ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) 21 | add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin}) 22 | list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) 23 | endforeach (ffi_plugin) 24 | -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- 1 | # 2 | # Generated file, do not edit. 3 | # 4 | 5 | list(APPEND FLUTTER_PLUGIN_LIST 6 | ) 7 | 8 | list(APPEND FLUTTER_FFI_PLUGIN_LIST 9 | ) 10 | 11 | set(PLUGIN_BUNDLED_LIBRARIES) 12 | 13 | foreach (plugin ${FLUTTER_PLUGIN_LIST}) 14 | add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin}) 15 | target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) 16 | list(APPEND PLUGIN_BUNDLED_LIBRARIES $) 17 | list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) 18 | endforeach (plugin) 19 | 20 | foreach (ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) 21 | add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin}) 22 | list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) 23 | endforeach (ffi_plugin) 24 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.log 4 | *.pyc 5 | *.swp 6 | .DS_Store 7 | .atom/ 8 | .buildlog/ 9 | .history 10 | .svn/ 11 | migrate_working_dir/ 12 | 13 | # IntelliJ related 14 | *.iml 15 | *.ipr 16 | *.iws 17 | .idea/ 18 | 19 | # The .vscode folder contains launch configuration and tasks you configure in 20 | # VS Code which you may wish to be included in version control, so this line 21 | # is commented out by default. 22 | #.vscode/ 23 | 24 | # Flutter/Dart/Pub related 25 | **/doc/api/ 26 | **/ios/Flutter/.last_build_id 27 | .dart_tool/ 28 | .flutter-plugins 29 | .flutter-plugins-dependencies 30 | .packages 31 | .pub-cache/ 32 | .pub/ 33 | /build/ 34 | 35 | # Symbolication related 36 | app.*.symbols 37 | 38 | # Obfuscation related 39 | app.*.map.json 40 | 41 | # Android Studio will place build artifacts here 42 | /android/app/debug 43 | /android/app/profile 44 | /android/app/release 45 | -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | App 9 | CFBundleIdentifier 10 | io.flutter.flutter.app 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | App 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | MinimumOSVersion 24 | 11.0 25 | 26 | 27 | -------------------------------------------------------------------------------- /lib/widgets/wrapper_container.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_tic_tac_toe/theme/colors.dart'; 3 | 4 | class WrapperContainer extends StatelessWidget { 5 | const WrapperContainer({super.key, required this.child}); 6 | 7 | final Widget child; 8 | 9 | @override 10 | Widget build(BuildContext context) => Container( 11 | width: double.infinity, 12 | height: double.infinity, 13 | padding: const EdgeInsets.symmetric(vertical: 0.0, horizontal: 16), 14 | decoration: const BoxDecoration( 15 | gradient: LinearGradient( 16 | begin: Alignment.topCenter, 17 | end: Alignment.bottomCenter, 18 | colors: [ 19 | GameColors.kGradient1, 20 | GameColors.kGradient2, 21 | ], 22 | stops: [0.5, 0.9], 23 | ), 24 | ), 25 | child: child, 26 | ); 27 | } 28 | -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "flutter_tic_tac_toe", 3 | "short_name": "flutter_tic_tac_toe", 4 | "start_url": ".", 5 | "display": "standalone", 6 | "background_color": "#0175C2", 7 | "theme_color": "#0175C2", 8 | "description": "A new Flutter project.", 9 | "orientation": "portrait-primary", 10 | "prefer_related_applications": false, 11 | "icons": [ 12 | { 13 | "src": "icons/Icon-192.png", 14 | "sizes": "192x192", 15 | "type": "image/png" 16 | }, 17 | { 18 | "src": "icons/Icon-512.png", 19 | "sizes": "512x512", 20 | "type": "image/png" 21 | }, 22 | { 23 | "src": "icons/Icon-maskable-192.png", 24 | "sizes": "192x192", 25 | "type": "image/png", 26 | "purpose": "maskable" 27 | }, 28 | { 29 | "src": "icons/Icon-maskable-512.png", 30 | "sizes": "512x512", 31 | "type": "image/png", 32 | "purpose": "maskable" 33 | } 34 | ] 35 | } 36 | -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PerMonitorV2 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- 1 | #ifndef RUNNER_FLUTTER_WINDOW_H_ 2 | #define RUNNER_FLUTTER_WINDOW_H_ 3 | 4 | #include 5 | #include 6 | 7 | #include 8 | 9 | #include "win32_window.h" 10 | 11 | // A window that does nothing but host a Flutter view. 12 | class FlutterWindow : public Win32Window { 13 | public: 14 | // Creates a new FlutterWindow hosting a Flutter view running |project|. 15 | explicit FlutterWindow(const flutter::DartProject &project); 16 | 17 | virtual ~FlutterWindow(); 18 | 19 | protected: 20 | // Win32Window: 21 | bool OnCreate() override; 22 | 23 | void OnDestroy() override; 24 | 25 | LRESULT MessageHandler(HWND window, UINT const message, WPARAM const wparam, 26 | LPARAM const lparam) 27 | 28 | noexcept override; 29 | 30 | private: 31 | // The project to run. 32 | flutter::DartProject project_; 33 | 34 | // The Flutter instance hosted by this window. 35 | std::unique_ptr flutter_controller_; 36 | }; 37 | 38 | #endif // RUNNER_FLUTTER_WINDOW_H_ 39 | -------------------------------------------------------------------------------- /lib/game_logic/minimax.dart: -------------------------------------------------------------------------------- 1 | import 'dart:math'; 2 | 3 | import '../game_logic/check_result.dart'; 4 | 5 | int minimax(List> board, bool isMaximizing) { 6 | if (checkWin(board, 'O')) { 7 | return 1; 8 | } else if (checkWin(board, 'X')) { 9 | return -1; 10 | } else if (checkDraw(board)) { 11 | return 0; 12 | } 13 | 14 | if (isMaximizing) { 15 | int bestScore = -1000; 16 | for (int i = 0; i < 3; i++) { 17 | for (int j = 0; j < 3; j++) { 18 | if (board[i][j].isEmpty) { 19 | board[i][j] = 'O'; 20 | int score = minimax(board, false); 21 | board[i][j] = ''; 22 | bestScore = max(score, bestScore); 23 | } 24 | } 25 | } 26 | return bestScore; 27 | } else { 28 | int bestScore = 1000; 29 | for (int i = 0; i < 3; i++) { 30 | for (int j = 0; j < 3; j++) { 31 | if (board[i][j].isEmpty) { 32 | board[i][j] = 'X'; 33 | int score = minimax(board, true); 34 | board[i][j] = ''; 35 | bestScore = min(score, bestScore); 36 | } 37 | } 38 | } 39 | return bestScore; 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- 1 | // This is a basic Flutter widget test. 2 | // 3 | // To perform an interaction with a widget in your test, use the WidgetTester 4 | // utility in the flutter_test package. For example, you can send tap and scroll 5 | // gestures. You can also use WidgetTester to find child widgets in the widget 6 | // tree, read text, and verify that the values of widget properties are correct. 7 | 8 | import 'package:flutter/material.dart'; 9 | import 'package:flutter_test/flutter_test.dart'; 10 | import 'package:flutter_tic_tac_toe/main.dart'; 11 | 12 | void main() { 13 | testWidgets('Counter increments smoke test', (WidgetTester tester) async { 14 | // Build our app and trigger a frame. 15 | await tester.pumpWidget(const MyApp()); 16 | 17 | // Verify that our counter starts at 0. 18 | expect(find.text('0'), findsOneWidget); 19 | expect(find.text('1'), findsNothing); 20 | 21 | // Tap the '+' icon and trigger a frame. 22 | await tester.tap(find.byIcon(Icons.add)); 23 | await tester.pump(); 24 | 25 | // Verify that our counter has incremented. 26 | expect(find.text('0'), findsNothing); 27 | expect(find.text('1'), findsOneWidget); 28 | }); 29 | } 30 | -------------------------------------------------------------------------------- /lib/widgets/alert_dialog.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | import '../theme/colors.dart'; 4 | import 'button_widget.dart'; 5 | 6 | void showGameAlertDialog( 7 | String message, BuildContext context, String winner, Function resetGame) { 8 | showDialog( 9 | context: context, 10 | barrierDismissible: false, 11 | builder: (BuildContext context) { 12 | return AlertDialog( 13 | backgroundColor: GameColors.kLighterForeground, 14 | elevation: 0, 15 | title: const Text( 16 | "Game Over", 17 | style: TextStyle( 18 | color: Colors.white, 19 | fontSize: 20, 20 | ), 21 | ), 22 | content: Text( 23 | message, 24 | style: const TextStyle( 25 | color: Colors.white, 26 | fontSize: 20, 27 | ), 28 | ), 29 | actions: [ 30 | ButtonWidget( 31 | onPressed: () { 32 | Navigator.of(context).pop(); 33 | resetGame(); 34 | }, 35 | winner: winner, 36 | text: 'Play Again', 37 | ), 38 | ], 39 | ); 40 | }, 41 | ); 42 | } 43 | -------------------------------------------------------------------------------- /lib/providers/game_providers.dart: -------------------------------------------------------------------------------- 1 | import 'package:hooks_riverpod/hooks_riverpod.dart'; 2 | 3 | class BoardNotifier extends StateNotifier>> { 4 | BoardNotifier() : super(List.generate(3, (_) => List.filled(3, ''))); 5 | 6 | void resetBoard() { 7 | state = List.generate(3, (_) => List.filled(3, '')); 8 | } 9 | 10 | void updateBoard(int row, int col, String value) { 11 | state[row][col] = value; 12 | } 13 | } 14 | 15 | class CurrentPlayerNotifier extends StateNotifier { 16 | CurrentPlayerNotifier() : super('X'); 17 | 18 | void togglePlayer() { 19 | state = state == 'X' ? 'O' : 'X'; 20 | } 21 | } 22 | 23 | class WinnerNotifier extends StateNotifier { 24 | WinnerNotifier() : super(''); 25 | 26 | void updateWinner(String value) { 27 | state = value; 28 | } 29 | } 30 | 31 | final boardProvider = StateNotifierProvider>>( 32 | (ref) => BoardNotifier()); 33 | final currentPlayerProvider = 34 | StateNotifierProvider( 35 | (ref) => CurrentPlayerNotifier()); 36 | final winnerProvider = 37 | StateNotifierProvider((ref) => WinnerNotifier()); 38 | -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIconFile 10 | 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | $(FLUTTER_BUILD_NAME) 21 | CFBundleVersion 22 | $(FLUTTER_BUILD_NUMBER) 23 | LSMinimumSystemVersion 24 | $(MACOSX_DEPLOYMENT_TARGET) 25 | NSHumanReadableCopyright 26 | $(PRODUCT_COPYRIGHT) 27 | NSMainNibFile 28 | MainMenu 29 | NSPrincipalClass 30 | NSApplication 31 | 32 | 33 | -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_tic_tac_toe/model/history_hive_model.dart'; 3 | import 'package:flutter_tic_tac_toe/screens/main_menu.dart'; 4 | import 'package:flutter_tic_tac_toe/storage/history_box.dart'; 5 | import 'package:hive_flutter/adapters.dart'; 6 | import 'package:hooks_riverpod/hooks_riverpod.dart'; 7 | import 'package:path_provider/path_provider.dart'; 8 | 9 | void main() async { 10 | WidgetsFlutterBinding.ensureInitialized(); 11 | await Hive.initFlutter((await getApplicationDocumentsDirectory()).path); 12 | Hive.registerAdapter(HistoryModelHiveAdapter()); 13 | await HistoryBox.openBox(); 14 | 15 | runApp(const ProviderScope(child: MyApp())); 16 | } 17 | 18 | class MyApp extends StatelessWidget { 19 | const MyApp({super.key}); 20 | 21 | @override 22 | Widget build(BuildContext context) => MaterialApp( 23 | debugShowCheckedModeBanner: false, 24 | title: 'Flutter Tic Tac Toe', 25 | theme: ThemeData( 26 | colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple), 27 | fontFamily: "PermanentMarker", 28 | useMaterial3: true, 29 | ), 30 | home: const Scaffold(body: MainMenu()), 31 | ); 32 | } 33 | -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | 5 | #include "flutter_window.h" 6 | #include "utils.h" 7 | 8 | int APIENTRY 9 | wWinMain(_In_ 10 | HINSTANCE instance, _In_opt_ 11 | HINSTANCE prev, 12 | _In_ 13 | wchar_t *command_line, _In_ 14 | int show_command 15 | ) { 16 | // Attach to console when present (e.g., 'flutter run') or create a 17 | // new console when running with a debugger. 18 | if (! 19 | ::AttachConsole(ATTACH_PARENT_PROCESS) 20 | && ::IsDebuggerPresent()) { 21 | CreateAndAttachConsole(); 22 | 23 | } 24 | 25 | // Initialize COM, so that it is available for use in the library and/or 26 | // plugins. 27 | ::CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED 28 | ); 29 | 30 | flutter::DartProject project(L"data"); 31 | 32 | std::vector command_line_arguments = 33 | GetCommandLineArguments(); 34 | 35 | project. 36 | set_dart_entrypoint_arguments(std::move(command_line_arguments) 37 | ); 38 | 39 | FlutterWindow window(project); 40 | Win32Window::Point origin(10, 10); 41 | Win32Window::Size size(1280, 720); 42 | if (!window.Create(L"flutter_tic_tac_toe", origin, size)) { 43 | return 44 | EXIT_FAILURE; 45 | } 46 | window.SetQuitOnClose(true); 47 | 48 | ::MSG msg; 49 | while ( 50 | ::GetMessage(&msg, nullptr, 51 | 0, 0)) { 52 | ::TranslateMessage(&msg); 53 | ::DispatchMessage(&msg); 54 | } 55 | 56 | ::CoUninitialize(); 57 | return 58 | EXIT_SUCCESS; 59 | } 60 | -------------------------------------------------------------------------------- /lib/game_logic/check_result.dart: -------------------------------------------------------------------------------- 1 | import 'dart:math'; 2 | 3 | import 'package:hooks_riverpod/hooks_riverpod.dart'; 4 | 5 | import '../providers/game_providers.dart'; 6 | 7 | bool checkWin(List> board, String player) { 8 | for (int i = 0; i < 3; i++) { 9 | if ((board[i][0] == player && 10 | board[i][1] == player && 11 | board[i][2] == player) || 12 | (board[0][i] == player && 13 | board[1][i] == player && 14 | board[2][i] == player)) { 15 | return true; 16 | } 17 | } 18 | if ((board[0][0] == player && 19 | board[1][1] == player && 20 | board[2][2] == player) || 21 | (board[0][2] == player && 22 | board[1][1] == player && 23 | board[2][0] == player)) { 24 | return true; 25 | } 26 | return false; 27 | } 28 | 29 | bool checkDraw(List> board) => 30 | board.every((row) => row.every((cell) => cell.isNotEmpty)); 31 | 32 | void resetGame(String currentPlayerValue, WidgetRef ref, 33 | {bool isAgainstAI = false}) { 34 | final boardNotifier = ref.read(boardProvider.notifier); 35 | final winnerNotifier = ref.read(winnerProvider.notifier); 36 | boardNotifier.resetBoard(); 37 | if (isAgainstAI) { 38 | ref.read(currentPlayerProvider.notifier).state = 'X'; 39 | } else if (winnerNotifier.state == 'draw') { 40 | final newCurrentPlayer = ['X', 'O'][Random().nextInt(2)]; 41 | ref.read(currentPlayerProvider.notifier).state = newCurrentPlayer; 42 | } 43 | 44 | winnerNotifier.updateWinner(''); 45 | } 46 | -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- 1 | # This file configures the analyzer, which statically analyzes Dart code to 2 | # check for errors, warnings, and lints. 3 | # 4 | # The issues identified by the analyzer are surfaced in the UI of Dart-enabled 5 | # IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be 6 | # invoked from the command line by running `flutter analyze`. 7 | 8 | # The following line activates a set of recommended lints for Flutter apps, 9 | # packages, and plugins designed to encourage good coding practices. 10 | include: package:flutter_lints/flutter.yaml 11 | 12 | linter: 13 | # The lint rules applied to this project can be customized in the 14 | # section below to disable rules from the `package:flutter_lints/flutter.yaml` 15 | # included above or to enable additional rules. A list of all available lints 16 | # and their documentation is published at 17 | # https://dart-lang.github.io/linter/lints/index.html. 18 | # 19 | # Instead of disabling a lint rule for the entire project in the 20 | # section below, it can also be suppressed for a single line of code 21 | # or a specific dart file by using the `// ignore: name_of_lint` and 22 | # `// ignore_for_file: name_of_lint` syntax on the line or in the file 23 | # producing the lint. 24 | rules: 25 | # avoid_print: false # Uncomment to disable the `avoid_print` rule 26 | # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule 27 | 28 | # Additional information about this file can be found at 29 | # https://dart.dev/guides/language/analysis-options 30 | -------------------------------------------------------------------------------- /lib/model/history_hive_model.g.dart: -------------------------------------------------------------------------------- 1 | // GENERATED CODE - DO NOT MODIFY BY HAND 2 | 3 | part of 'history_hive_model.dart'; 4 | 5 | // ************************************************************************** 6 | // TypeAdapterGenerator 7 | // ************************************************************************** 8 | 9 | class HistoryModelHiveAdapter extends TypeAdapter { 10 | @override 11 | final int typeId = 0; 12 | 13 | @override 14 | HistoryModelHive read(BinaryReader reader) { 15 | final numOfFields = reader.readByte(); 16 | final fields = { 17 | for (int i = 0; i < numOfFields; i++) reader.readByte(): reader.read(), 18 | }; 19 | return HistoryModelHive( 20 | playerXName: fields[1] as String, 21 | playerOName: fields[2] as String, 22 | winner: fields[3] as String, 23 | date: fields[4] as DateTime?, 24 | ); 25 | } 26 | 27 | @override 28 | void write(BinaryWriter writer, HistoryModelHive obj) { 29 | writer 30 | ..writeByte(4) 31 | ..writeByte(1) 32 | ..write(obj.playerXName) 33 | ..writeByte(2) 34 | ..write(obj.playerOName) 35 | ..writeByte(3) 36 | ..write(obj.winner) 37 | ..writeByte(4) 38 | ..write(obj.date); 39 | } 40 | 41 | @override 42 | int get hashCode => typeId.hashCode; 43 | 44 | @override 45 | bool operator ==(Object other) => 46 | identical(this, other) || 47 | other is HistoryModelHiveAdapter && 48 | runtimeType == other.runtimeType && 49 | typeId == other.typeId; 50 | } 51 | -------------------------------------------------------------------------------- /lib/widgets/button_widget.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_tic_tac_toe/theme/app_sizes.dart'; 3 | 4 | import '../theme/colors.dart'; 5 | 6 | class ButtonWidget extends StatelessWidget { 7 | const ButtonWidget( 8 | {super.key, 9 | required this.onPressed, 10 | required this.text, 11 | this.isEnabled = true, 12 | this.winner = "draw"}); 13 | 14 | final void Function() onPressed; 15 | final String text; 16 | final String? winner; 17 | final bool isEnabled; 18 | 19 | Color getColor(bool isEnabled, String winner) { 20 | final colorMap = { 21 | false: GameColors.kGrey, 22 | 'X': GameColors.kBlue, 23 | 'O': GameColors.kPurple, 24 | }; 25 | 26 | return isEnabled 27 | ? colorMap[winner] ?? GameColors.kForeground 28 | : GameColors.kGrey; 29 | } 30 | 31 | @override 32 | Widget build(BuildContext context) { 33 | return ElevatedButton( 34 | onPressed: () { 35 | isEnabled ? onPressed() : null; 36 | }, 37 | style: ElevatedButton.styleFrom( 38 | backgroundColor: getColor(isEnabled, winner!), 39 | padding: const EdgeInsets.symmetric( 40 | vertical: 16, 41 | horizontal: 24, 42 | ), 43 | shape: RoundedRectangleBorder( 44 | borderRadius: borderRadiusM(), 45 | ), 46 | ), 47 | child: Text( 48 | text, 49 | style: TextStyle( 50 | color: isEnabled ? GameColors.kWhitish : Colors.black, 51 | ), 52 | ), 53 | ); 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "size": "16x16", 5 | "idiom": "mac", 6 | "filename": "app_icon_16.png", 7 | "scale": "1x" 8 | }, 9 | { 10 | "size": "16x16", 11 | "idiom": "mac", 12 | "filename": "app_icon_32.png", 13 | "scale": "2x" 14 | }, 15 | { 16 | "size": "32x32", 17 | "idiom": "mac", 18 | "filename": "app_icon_32.png", 19 | "scale": "1x" 20 | }, 21 | { 22 | "size": "32x32", 23 | "idiom": "mac", 24 | "filename": "app_icon_64.png", 25 | "scale": "2x" 26 | }, 27 | { 28 | "size": "128x128", 29 | "idiom": "mac", 30 | "filename": "app_icon_128.png", 31 | "scale": "1x" 32 | }, 33 | { 34 | "size": "128x128", 35 | "idiom": "mac", 36 | "filename": "app_icon_256.png", 37 | "scale": "2x" 38 | }, 39 | { 40 | "size": "256x256", 41 | "idiom": "mac", 42 | "filename": "app_icon_256.png", 43 | "scale": "1x" 44 | }, 45 | { 46 | "size": "256x256", 47 | "idiom": "mac", 48 | "filename": "app_icon_512.png", 49 | "scale": "2x" 50 | }, 51 | { 52 | "size": "512x512", 53 | "idiom": "mac", 54 | "filename": "app_icon_512.png", 55 | "scale": "1x" 56 | }, 57 | { 58 | "size": "512x512", 59 | "idiom": "mac", 60 | "filename": "app_icon_1024.png", 61 | "scale": "2x" 62 | } 63 | ], 64 | "info": { 65 | "version": 1, 66 | "author": "xcode" 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /lib/screens/game_base_screen.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_tic_tac_toe/theme/colors.dart'; 3 | import 'package:hooks_riverpod/hooks_riverpod.dart'; 4 | 5 | import '../providers/game_providers.dart'; 6 | import '../widgets/history_modal.dart'; 7 | import 'game_screen.dart'; 8 | 9 | class GameBaseScreen extends HookConsumerWidget { 10 | const GameBaseScreen({ 11 | Key? key, 12 | required this.isAgainstAI, 13 | required this.playerXName, 14 | required this.playerOName, 15 | }) : super(key: key); 16 | 17 | final String playerXName; 18 | final String playerOName; 19 | final bool isAgainstAI; 20 | 21 | @override 22 | Widget build(BuildContext context, WidgetRef ref) => Scaffold( 23 | appBar: AppBar( 24 | backgroundColor: GameColors.kGradient1, 25 | leading: IconButton( 26 | onPressed: () { 27 | final BoardNotifier boardNotifier = 28 | ref.read(boardProvider.notifier); 29 | boardNotifier.resetBoard(); 30 | Navigator.pop(context); 31 | }, 32 | icon: const Icon( 33 | Icons.arrow_back_outlined, 34 | color: GameColors.kWhitish, 35 | ), 36 | ), 37 | actions: [ 38 | IconButton( 39 | onPressed: () { 40 | buildHistoryBottomSheet(context); 41 | }, 42 | icon: const Icon( 43 | Icons.history_outlined, 44 | color: GameColors.kWhitish, 45 | ), 46 | ), 47 | ], 48 | ), 49 | body: GameScreen( 50 | playerXName: playerXName, 51 | playerOName: playerOName, 52 | isAgainstAI: isAgainstAI, 53 | ), 54 | ); 55 | } 56 | -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled. 5 | 6 | version: 7 | revision: 796c8ef79279f9c774545b3771238c3098dbefab 8 | channel: stable 9 | 10 | project_type: app 11 | 12 | # Tracks metadata for the flutter migrate command 13 | migration: 14 | platforms: 15 | - platform: root 16 | create_revision: 796c8ef79279f9c774545b3771238c3098dbefab 17 | base_revision: 796c8ef79279f9c774545b3771238c3098dbefab 18 | - platform: android 19 | create_revision: 796c8ef79279f9c774545b3771238c3098dbefab 20 | base_revision: 796c8ef79279f9c774545b3771238c3098dbefab 21 | - platform: ios 22 | create_revision: 796c8ef79279f9c774545b3771238c3098dbefab 23 | base_revision: 796c8ef79279f9c774545b3771238c3098dbefab 24 | - platform: linux 25 | create_revision: 796c8ef79279f9c774545b3771238c3098dbefab 26 | base_revision: 796c8ef79279f9c774545b3771238c3098dbefab 27 | - platform: macos 28 | create_revision: 796c8ef79279f9c774545b3771238c3098dbefab 29 | base_revision: 796c8ef79279f9c774545b3771238c3098dbefab 30 | - platform: web 31 | create_revision: 796c8ef79279f9c774545b3771238c3098dbefab 32 | base_revision: 796c8ef79279f9c774545b3771238c3098dbefab 33 | - platform: windows 34 | create_revision: 796c8ef79279f9c774545b3771238c3098dbefab 35 | base_revision: 796c8ef79279f9c774545b3771238c3098dbefab 36 | 37 | # User provided section 38 | 39 | # List of Local paths (relative to this file) that should be 40 | # ignored by the migrate tool. 41 | # 42 | # Files that are not part of the templates will be ignored by default. 43 | unmanaged_files: 44 | - 'lib/main.dart' 45 | - 'ios/Runner.xcodeproj/project.pbxproj' 46 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 17 | 21 | 24 | 25 | 26 | 27 | 28 | 29 | 31 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleDisplayName 8 | Flutter Tic Tac Toe 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | flutter_tic_tac_toe 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | $(FLUTTER_BUILD_NAME) 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | $(FLUTTER_BUILD_NUMBER) 25 | LSRequiresIPhoneOS 26 | 27 | UILaunchStoryboardName 28 | LaunchScreen 29 | UIMainStoryboardFile 30 | Main 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UISupportedInterfaceOrientations~ipad 38 | 39 | UIInterfaceOrientationPortrait 40 | UIInterfaceOrientationPortraitUpsideDown 41 | UIInterfaceOrientationLandscapeLeft 42 | UIInterfaceOrientationLandscapeRight 43 | 44 | UIViewControllerBasedStatusBarAppearance 45 | 46 | CADisableMinimumFrameDurationOnPhone 47 | 48 | UIApplicationSupportsIndirectInputEvents 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.14) 2 | project(runner LANGUAGES CXX) 3 | 4 | # Define the application target. To change its name, change BINARY_NAME in the 5 | # top-level CMakeLists.txt, not the value here, or `flutter run` will no longer 6 | # work. 7 | # 8 | # Any new source files that you add to the application should be added here. 9 | add_executable(${BINARY_NAME} WIN32 10 | "flutter_window.cpp" 11 | "main.cpp" 12 | "utils.cpp" 13 | "win32_window.cpp" 14 | "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" 15 | "Runner.rc" 16 | "runner.exe.manifest" 17 | ) 18 | 19 | # Apply the standard set of build settings. This can be removed for applications 20 | # that need different build settings. 21 | apply_standard_settings(${BINARY_NAME}) 22 | 23 | # Add preprocessor definitions for the build version. 24 | target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION=\"${FLUTTER_VERSION}\"") 25 | target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MAJOR=${FLUTTER_VERSION_MAJOR}") 26 | target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MINOR=${FLUTTER_VERSION_MINOR}") 27 | target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_PATCH=${FLUTTER_VERSION_PATCH}") 28 | target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_BUILD=${FLUTTER_VERSION_BUILD}") 29 | 30 | # Disable Windows macros that collide with C++ standard library functions. 31 | target_compile_definitions(${BINARY_NAME} PRIVATE "NOMINMAX") 32 | 33 | # Add dependency libraries and include directories. Add any application-specific 34 | # dependencies here. 35 | target_link_libraries(${BINARY_NAME} PRIVATE flutter flutter_wrapper_app) 36 | target_link_libraries(${BINARY_NAME} PRIVATE "dwmapi.lib") 37 | target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}") 38 | 39 | # Run the Flutter tool portions of the build. This must not be removed. 40 | add_dependencies(${BINARY_NAME} flutter_assemble) 41 | -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | flutter_tic_tac_toe 33 | 34 | 35 | 41 | 42 | 43 | 44 | 45 | 62 | 63 | 64 | -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- 1 | #include "flutter_window.h" 2 | 3 | #include 4 | 5 | #include "flutter/generated_plugin_registrant.h" 6 | 7 | FlutterWindow::FlutterWindow(const flutter::DartProject &project) 8 | : project_(project) {} 9 | 10 | FlutterWindow::~FlutterWindow() {} 11 | 12 | bool FlutterWindow::OnCreate() { 13 | if (!Win32Window::OnCreate()) { 14 | return false; 15 | } 16 | 17 | RECT frame = GetClientArea(); 18 | 19 | // The size here must match the window dimensions to avoid unnecessary surface 20 | // creation / destruction in the startup path. 21 | flutter_controller_ = std::make_unique( 22 | frame.right - frame.left, frame.bottom - frame.top, project_); 23 | // Ensure that basic setup of the controller was successful. 24 | if (!flutter_controller_->engine() || !flutter_controller_->view()) { 25 | return false; 26 | } 27 | RegisterPlugins(flutter_controller_->engine()); 28 | SetChildContent(flutter_controller_->view()->GetNativeWindow()); 29 | 30 | flutter_controller_->engine()->SetNextFrameCallback([&]() { 31 | this->Show(); 32 | }); 33 | 34 | return true; 35 | } 36 | 37 | void FlutterWindow::OnDestroy() { 38 | if (flutter_controller_) { 39 | flutter_controller_ = nullptr; 40 | } 41 | 42 | Win32Window::OnDestroy(); 43 | } 44 | 45 | LRESULT 46 | FlutterWindow::MessageHandler(HWND hwnd, UINT const message, 47 | WPARAM const wparam, 48 | LPARAM const lparam) 49 | 50 | noexcept { 51 | // Give Flutter, including plugins, an opportunity to handle window messages. 52 | if (flutter_controller_) { 53 | std::optional result = 54 | flutter_controller_->HandleTopLevelWindowProc(hwnd, message, wparam, 55 | lparam); 56 | if (result) { 57 | return * 58 | result; 59 | } 60 | } 61 | 62 | switch (message) { 63 | case WM_FONTCHANGE: 64 | flutter_controller_->engine()->ReloadSystemFonts(); 65 | break; 66 | } 67 | 68 | return 69 | Win32Window::MessageHandler(hwnd, message, wparam, lparam 70 | ); 71 | } 72 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id "com.android.application" 3 | id "kotlin-android" 4 | id "dev.flutter.flutter-gradle-plugin" 5 | } 6 | def localProperties = new Properties() 7 | def localPropertiesFile = rootProject.file('local.properties') 8 | if (localPropertiesFile.exists()) { 9 | localPropertiesFile.withReader('UTF-8') { reader -> 10 | localProperties.load(reader) 11 | } 12 | } 13 | 14 | 15 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode') 16 | if (flutterVersionCode == null) { 17 | flutterVersionCode = '1' 18 | } 19 | 20 | def flutterVersionName = localProperties.getProperty('flutter.versionName') 21 | if (flutterVersionName == null) { 22 | flutterVersionName = '1.0' 23 | } 24 | 25 | 26 | android { 27 | namespace "com.tictactoe.flutter_tic_tac_toe" 28 | compileSdkVersion flutter.compileSdkVersion 29 | ndkVersion flutter.ndkVersion 30 | 31 | compileOptions { 32 | sourceCompatibility JavaVersion.VERSION_1_8 33 | targetCompatibility JavaVersion.VERSION_1_8 34 | } 35 | 36 | kotlinOptions { 37 | jvmTarget = '1.8' 38 | } 39 | 40 | sourceSets { 41 | main.java.srcDirs += 'src/main/kotlin' 42 | } 43 | 44 | defaultConfig { 45 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 46 | applicationId "com.tictactoe.flutter_tic_tac_toe" 47 | // You can update the following values to match your application needs. 48 | // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration. 49 | minSdkVersion flutter.minSdkVersion 50 | targetSdkVersion flutter.targetSdkVersion 51 | versionCode flutterVersionCode.toInteger() 52 | versionName flutterVersionName 53 | } 54 | 55 | buildTypes { 56 | release { 57 | // TODO: Add your own signing config for the release build. 58 | // Signing with the debug keys for now, so `flutter run --release` works. 59 | signingConfig signingConfigs.debug 60 | } 61 | } 62 | } 63 | 64 | flutter { 65 | source '../..' 66 | } 67 | 68 | -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- 1 | #include "utils.h" 2 | 3 | #include 4 | #include 5 | #include 6 | #include 7 | 8 | #include 9 | 10 | void CreateAndAttachConsole() { 11 | if (::AllocConsole()) { 12 | FILE *unused; 13 | if (freopen_s(&unused, "CONOUT$", "w", stdout)) { 14 | _dup2(_fileno(stdout), 1); 15 | } 16 | if (freopen_s(&unused, "CONOUT$", "w", stderr)) { 17 | _dup2(_fileno(stdout), 2); 18 | } 19 | std::ios::sync_with_stdio(); 20 | FlutterDesktopResyncOutputStreams(); 21 | } 22 | } 23 | 24 | std::vector GetCommandLineArguments() { 25 | // Convert the UTF-16 command line arguments to UTF-8 for the Engine to use. 26 | int argc; 27 | wchar_t **argv = ::CommandLineToArgvW(::GetCommandLineW(), &argc); 28 | if (argv == nullptr) { 29 | return std::vector(); 30 | } 31 | 32 | std::vector command_line_arguments; 33 | 34 | // Skip the first argument as it's the binary name. 35 | for (int i = 1; i < argc; i++) { 36 | command_line_arguments.push_back(Utf8FromUtf16(argv[i])); 37 | } 38 | 39 | ::LocalFree(argv); 40 | 41 | return command_line_arguments; 42 | } 43 | 44 | std::string Utf8FromUtf16(const wchar_t *utf16_string) { 45 | if (utf16_string == nullptr) { 46 | return std::string(); 47 | } 48 | int target_length = ::WideCharToMultiByte( 49 | CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, 50 | -1, nullptr, 0, nullptr, nullptr) 51 | - 1; // remove the trailing null character 52 | int input_length = (int) wcslen(utf16_string); 53 | std::string utf8_string; 54 | if (target_length <= 0 || target_length > utf8_string.max_size()) { 55 | return utf8_string; 56 | } 57 | utf8_string.resize(target_length); 58 | int converted_length = ::WideCharToMultiByte( 59 | CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, 60 | input_length, utf8_string.data(), target_length, nullptr, nullptr); 61 | if (converted_length == 0) { 62 | return std::string(); 63 | } 64 | return utf8_string; 65 | } 66 | -------------------------------------------------------------------------------- /lib/widgets/scoreboard.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_tic_tac_toe/theme/app_sizes.dart'; 3 | import 'package:google_fonts/google_fonts.dart'; 4 | 5 | import '../theme/colors.dart'; 6 | 7 | class ScoreBoard extends StatelessWidget { 8 | const ScoreBoard({ 9 | super.key, 10 | required this.playerXScore, 11 | required this.playerOScore, 12 | required this.isTurn, 13 | required this.playerXName, 14 | required this.playerOName, 15 | }); 16 | 17 | final int playerXScore; 18 | final int playerOScore; 19 | final bool isTurn; 20 | final String playerXName; 21 | final String playerOName; 22 | 23 | Widget _buildPlayerScore(String playerLabel, int score, bool isTurn) => 24 | Container( 25 | padding: const EdgeInsets.all(16), 26 | width: 150, 27 | height: 100, 28 | decoration: BoxDecoration( 29 | color: GameColors.kForeground, 30 | borderRadius: borderRadiusM(), 31 | border: isTurn 32 | ? playerLabel == playerXName 33 | ? Border.all( 34 | color: GameColors.kBlue, 35 | width: 2.0, 36 | ) 37 | : Border.all( 38 | color: GameColors.kPurple, 39 | width: 2.0, 40 | ) 41 | : null, 42 | ), 43 | child: Column( 44 | mainAxisAlignment: MainAxisAlignment.spaceAround, 45 | children: [ 46 | Text( 47 | playerLabel, 48 | style: TextStyle( 49 | fontSize: 16, 50 | fontWeight: FontWeight.bold, 51 | color: playerLabel == playerXName ? Colors.blue : Colors.purple, 52 | ), 53 | ), 54 | Text( 55 | score.toString(), 56 | style: TextStyle( 57 | fontSize: 20, 58 | fontFamily: GoogleFonts.caveat().fontFamily, 59 | fontWeight: FontWeight.bold, 60 | color: GameColors.kWhitish, 61 | ), 62 | ), 63 | ], 64 | ), 65 | ); 66 | 67 | @override 68 | Widget build(BuildContext context) => Row( 69 | mainAxisAlignment: MainAxisAlignment.spaceAround, 70 | children: [ 71 | _buildPlayerScore(playerXName, playerXScore, isTurn), 72 | _buildPlayerScore(playerOName, playerOScore, !isTurn), 73 | ], 74 | ); 75 | } 76 | -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /lib/screens/main_menu.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_tic_tac_toe/screens/players_names_screen.dart'; 3 | import 'package:flutter_tic_tac_toe/theme/app_sizes.dart'; 4 | import 'package:flutter_tic_tac_toe/theme/colors.dart'; 5 | import 'package:flutter_tic_tac_toe/widgets/wrapper_container.dart'; 6 | 7 | import 'game_base_screen.dart'; 8 | 9 | class MainMenu extends StatelessWidget { 10 | const MainMenu({super.key}); 11 | 12 | @override 13 | Widget build(BuildContext context) { 14 | return WrapperContainer( 15 | child: Center( 16 | child: Column( 17 | mainAxisAlignment: MainAxisAlignment.center, 18 | children: [ 19 | const Text( 20 | 'Tic Tac Toe', 21 | style: TextStyle( 22 | fontSize: 50, 23 | color: Colors.white, 24 | ), 25 | ), 26 | gap4XL(), 27 | MainMenuButtons( 28 | btnText: 'Single Player', 29 | onPressed: () { 30 | Navigator.push( 31 | context, 32 | MaterialPageRoute( 33 | builder: (context) => const GameBaseScreen( 34 | playerOName: "AI", 35 | playerXName: "You", 36 | isAgainstAI: true, 37 | ), 38 | ), 39 | ); 40 | }, 41 | ), 42 | gapXL(), 43 | MainMenuButtons( 44 | btnText: 'Multiplayer', 45 | onPressed: () { 46 | Navigator.push( 47 | context, 48 | MaterialPageRoute( 49 | builder: (context) => const PlayerNames())); 50 | }, 51 | ), 52 | ], 53 | ), 54 | ), 55 | ); 56 | } 57 | } 58 | 59 | class MainMenuButtons extends StatelessWidget { 60 | const MainMenuButtons( 61 | {super.key, required this.btnText, required this.onPressed}); 62 | 63 | final String btnText; 64 | final void Function() onPressed; 65 | 66 | @override 67 | Widget build(BuildContext context) => SizedBox( 68 | width: MediaQuery.of(context).size.width * 0.8, 69 | child: ElevatedButton( 70 | onPressed: onPressed, 71 | style: ElevatedButton.styleFrom( 72 | backgroundColor: GameColors.kForeground, 73 | padding: const EdgeInsets.symmetric(vertical: 20, horizontal: 20), 74 | shape: RoundedRectangleBorder( 75 | borderRadius: BorderRadius.circular(10), 76 | ), 77 | ), 78 | child: Text( 79 | btnText, 80 | style: const TextStyle( 81 | color: GameColors.kWhitish, 82 | fontSize: 20, 83 | fontWeight: FontWeight.bold, 84 | ), 85 | ), 86 | ), 87 | ); 88 | } 89 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "size": "20x20", 5 | "idiom": "iphone", 6 | "filename": "Icon-App-20x20@2x.png", 7 | "scale": "2x" 8 | }, 9 | { 10 | "size": "20x20", 11 | "idiom": "iphone", 12 | "filename": "Icon-App-20x20@3x.png", 13 | "scale": "3x" 14 | }, 15 | { 16 | "size": "29x29", 17 | "idiom": "iphone", 18 | "filename": "Icon-App-29x29@1x.png", 19 | "scale": "1x" 20 | }, 21 | { 22 | "size": "29x29", 23 | "idiom": "iphone", 24 | "filename": "Icon-App-29x29@2x.png", 25 | "scale": "2x" 26 | }, 27 | { 28 | "size": "29x29", 29 | "idiom": "iphone", 30 | "filename": "Icon-App-29x29@3x.png", 31 | "scale": "3x" 32 | }, 33 | { 34 | "size": "40x40", 35 | "idiom": "iphone", 36 | "filename": "Icon-App-40x40@2x.png", 37 | "scale": "2x" 38 | }, 39 | { 40 | "size": "40x40", 41 | "idiom": "iphone", 42 | "filename": "Icon-App-40x40@3x.png", 43 | "scale": "3x" 44 | }, 45 | { 46 | "size": "60x60", 47 | "idiom": "iphone", 48 | "filename": "Icon-App-60x60@2x.png", 49 | "scale": "2x" 50 | }, 51 | { 52 | "size": "60x60", 53 | "idiom": "iphone", 54 | "filename": "Icon-App-60x60@3x.png", 55 | "scale": "3x" 56 | }, 57 | { 58 | "size": "20x20", 59 | "idiom": "ipad", 60 | "filename": "Icon-App-20x20@1x.png", 61 | "scale": "1x" 62 | }, 63 | { 64 | "size": "20x20", 65 | "idiom": "ipad", 66 | "filename": "Icon-App-20x20@2x.png", 67 | "scale": "2x" 68 | }, 69 | { 70 | "size": "29x29", 71 | "idiom": "ipad", 72 | "filename": "Icon-App-29x29@1x.png", 73 | "scale": "1x" 74 | }, 75 | { 76 | "size": "29x29", 77 | "idiom": "ipad", 78 | "filename": "Icon-App-29x29@2x.png", 79 | "scale": "2x" 80 | }, 81 | { 82 | "size": "40x40", 83 | "idiom": "ipad", 84 | "filename": "Icon-App-40x40@1x.png", 85 | "scale": "1x" 86 | }, 87 | { 88 | "size": "40x40", 89 | "idiom": "ipad", 90 | "filename": "Icon-App-40x40@2x.png", 91 | "scale": "2x" 92 | }, 93 | { 94 | "size": "76x76", 95 | "idiom": "ipad", 96 | "filename": "Icon-App-76x76@1x.png", 97 | "scale": "1x" 98 | }, 99 | { 100 | "size": "76x76", 101 | "idiom": "ipad", 102 | "filename": "Icon-App-76x76@2x.png", 103 | "scale": "2x" 104 | }, 105 | { 106 | "size": "83.5x83.5", 107 | "idiom": "ipad", 108 | "filename": "Icon-App-83.5x83.5@2x.png", 109 | "scale": "2x" 110 | }, 111 | { 112 | "size": "1024x1024", 113 | "idiom": "ios-marketing", 114 | "filename": "Icon-App-1024x1024@1x.png", 115 | "scale": "1x" 116 | } 117 | ], 118 | "info": { 119 | "version": 1, 120 | "author": "xcode" 121 | } 122 | } 123 | -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # This file controls Flutter-level build steps. It should not be edited. 2 | cmake_minimum_required(VERSION 3.10) 3 | 4 | set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") 5 | 6 | # Configuration provided via flutter tool. 7 | include(${EPHEMERAL_DIR}/generated_config.cmake) 8 | 9 | # TODO: Move the rest of this into files in ephemeral. See 10 | # https://github.com/flutter/flutter/issues/57146. 11 | 12 | # Serves the same purpose as list(TRANSFORM ... PREPEND ...), 13 | # which isn't available in 3.10. 14 | function(list_prepend LIST_NAME PREFIX) 15 | set(NEW_LIST "") 16 | foreach (element ${${LIST_NAME}}) 17 | list(APPEND NEW_LIST "${PREFIX}${element}") 18 | endforeach (element) 19 | set(${LIST_NAME} "${NEW_LIST}" PARENT_SCOPE) 20 | endfunction() 21 | 22 | # === Flutter Library === 23 | # System-level dependencies. 24 | find_package(PkgConfig REQUIRED) 25 | pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) 26 | pkg_check_modules(GLIB REQUIRED IMPORTED_TARGET glib-2.0) 27 | pkg_check_modules(GIO REQUIRED IMPORTED_TARGET gio-2.0) 28 | 29 | set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/libflutter_linux_gtk.so") 30 | 31 | # Published to parent scope for install step. 32 | set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) 33 | set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) 34 | set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) 35 | set(AOT_LIBRARY "${PROJECT_DIR}/build/lib/libapp.so" PARENT_SCOPE) 36 | 37 | list(APPEND FLUTTER_LIBRARY_HEADERS 38 | "fl_basic_message_channel.h" 39 | "fl_binary_codec.h" 40 | "fl_binary_messenger.h" 41 | "fl_dart_project.h" 42 | "fl_engine.h" 43 | "fl_json_message_codec.h" 44 | "fl_json_method_codec.h" 45 | "fl_message_codec.h" 46 | "fl_method_call.h" 47 | "fl_method_channel.h" 48 | "fl_method_codec.h" 49 | "fl_method_response.h" 50 | "fl_plugin_registrar.h" 51 | "fl_plugin_registry.h" 52 | "fl_standard_message_codec.h" 53 | "fl_standard_method_codec.h" 54 | "fl_string_codec.h" 55 | "fl_value.h" 56 | "fl_view.h" 57 | "flutter_linux.h" 58 | ) 59 | list_prepend(FLUTTER_LIBRARY_HEADERS "${EPHEMERAL_DIR}/flutter_linux/") 60 | add_library(flutter INTERFACE) 61 | target_include_directories(flutter INTERFACE 62 | "${EPHEMERAL_DIR}" 63 | ) 64 | target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}") 65 | target_link_libraries(flutter INTERFACE 66 | PkgConfig::GTK 67 | PkgConfig::GLIB 68 | PkgConfig::GIO 69 | ) 70 | add_dependencies(flutter flutter_assemble) 71 | 72 | # === Flutter tool backend === 73 | # _phony_ is a non-existent file to force this command to run every time, 74 | # since currently there's no way to get a full input/output list from the 75 | # flutter tool. 76 | add_custom_command( 77 | OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} 78 | ${CMAKE_CURRENT_BINARY_DIR}/_phony_ 79 | COMMAND ${CMAKE_COMMAND} -E env 80 | ${FLUTTER_TOOL_ENVIRONMENT} 81 | "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.sh" 82 | ${FLUTTER_TARGET_PLATFORM} ${CMAKE_BUILD_TYPE} 83 | VERBATIM 84 | ) 85 | add_custom_target(flutter_assemble DEPENDS 86 | "${FLUTTER_LIBRARY}" 87 | ${FLUTTER_LIBRARY_HEADERS} 88 | ) 89 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Tic Tac Toe


2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | ## Introduction 10 | 11 | The classic Tic Tac Toe game built using Flutter. To enhance the user experience, I implemented Hive 12 | as the local database, allowing players to view their games later. Additionally, I utilized hooks, a 13 | flutter implementation of React hooks, and Riverpod to efficiently manage the life-cycle of the 14 | Widget and state managment. 15 | ## Features 16 | 17 | * **Single Player** : Challenge yourself against an AI powered by the ****MiniMax**** algorithm, known for its strategic decision-making in game theory. Experience an engaging gameplay where the AI selects optimal moves, making every match a test of your skills. 18 | 19 | * **Multiplayer** : Compete against friends, customize player names, and choose "X" or "O" to determine 20 | the Tic Tac Toe champion! 21 | * **History** : Easily access and review your past matches, stored locally using Hive. 22 | 23 | ## State Management 24 | 25 | This project utilizes Hooks and Riverpod for efficient state management: 26 | 27 | 28 | * [**Hooks**](https://pub.dev/packages/flutter_hooks) 29 | 30 | Inspired by their React counterparts, Hooks offer a functional and reusable approach to constructing components, improving upon the usage of StatefulWidget. For instance, when using text field controllers, you have to manually dispose of them to prevent memory leaks, whereas hooks handle this automatically (useTextEditingController). 31 | * [**Riverpod**](https://pub.dev/packages/riverpod) 32 | 33 | Riverpod, a state management library, distinguishes itself through its emphasis on simplicity, 34 | performance, and scalability. This library seamlessly integrates into Flutter's ecosystem and 35 | furnishes an accessible interface. Employing Riverpod, I've adeptly overseen the application's 36 | state, simplifying the management of intricate interplays among distinct components. 37 | 38 | Combining Hooks and Riverpod has enabled me to create a cleaner and more efficient architecture for 39 | the Tic Tac Toe game, resulting in improved performance and maintainability. 40 | 41 |

42 | 43 |        44 | 45 |        46 | 47 |        48 | 49 |

50 |

51 | 52 |        53 | 54 |        55 |

56 | 57 | ## Build Process 58 | 59 | - Follow the [Flutter Guide](https://docs.flutter.dev/) for getting started building a flutter 60 | project. 61 | - Clone or download the repo 62 | 63 | ```{r klippy, echo=FALSE, include=TRUE} 64 | git clone https://github.com/SouhailKrs/Flutter-Tic-Tac-Toe 65 | ``` 66 | 67 | - Get dependencies 68 | 69 | ```{r klippy, echo=FALSE, include=TRUE} 70 | flutter pub get 71 | ``` 72 | -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- 1 | // Microsoft Visual C++ generated resource script. 2 | // 3 | #pragma code_page(65001) 4 | 5 | #include "resource.h" 6 | 7 | #define APSTUDIO_READONLY_SYMBOLS 8 | ///////////////////////////////////////////////////////////////////////////// 9 | // 10 | // Generated from the TEXTINCLUDE 2 resource. 11 | // 12 | #include "winres.h" 13 | 14 | ///////////////////////////////////////////////////////////////////////////// 15 | #undef APSTUDIO_READONLY_SYMBOLS 16 | 17 | ///////////////////////////////////////////////////////////////////////////// 18 | // English (United States) resources 19 | 20 | #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) 21 | LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US 22 | 23 | #ifdef APSTUDIO_INVOKED 24 | ///////////////////////////////////////////////////////////////////////////// 25 | // 26 | // TEXTINCLUDE 27 | // 28 | 29 | 1 TEXTINCLUDE 30 | BEGIN 31 | "resource.h\0" 32 | END 33 | 34 | 2 TEXTINCLUDE 35 | BEGIN 36 | "#include ""winres.h""\r\n" 37 | "\0" 38 | END 39 | 40 | 3 TEXTINCLUDE 41 | BEGIN 42 | "\r\n" 43 | "\0" 44 | END 45 | 46 | #endif // APSTUDIO_INVOKED 47 | 48 | 49 | ///////////////////////////////////////////////////////////////////////////// 50 | // 51 | // Icon 52 | // 53 | 54 | // Icon with lowest ID value placed first to ensure application icon 55 | // remains consistent on all systems. 56 | IDI_APP_ICON ICON "resources\\app_icon.ico" 57 | 58 | 59 | ///////////////////////////////////////////////////////////////////////////// 60 | // 61 | // Version 62 | // 63 | 64 | #if defined(FLUTTER_VERSION_MAJOR) && defined(FLUTTER_VERSION_MINOR) && defined(FLUTTER_VERSION_PATCH) && defined(FLUTTER_VERSION_BUILD) 65 | #define VERSION_AS_NUMBER FLUTTER_VERSION_MAJOR,FLUTTER_VERSION_MINOR,FLUTTER_VERSION_PATCH,FLUTTER_VERSION_BUILD 66 | #else 67 | #define VERSION_AS_NUMBER 1,0,0,0 68 | #endif 69 | 70 | #if defined(FLUTTER_VERSION) 71 | #define VERSION_AS_STRING FLUTTER_VERSION 72 | #else 73 | #define VERSION_AS_STRING "1.0.0" 74 | #endif 75 | 76 | VS_VERSION_INFO VERSIONINFO 77 | FILEVERSION VERSION_AS_NUMBER 78 | PRODUCTVERSION VERSION_AS_NUMBER 79 | FILEFLAGSMASK VS_FFI_FILEFLAGSMASK 80 | #ifdef _DEBUG 81 | FILEFLAGS VS_FF_DEBUG 82 | #else 83 | FILEFLAGS 0x0L 84 | #endif 85 | FILEOS VOS__WINDOWS32 86 | FILETYPE VFT_APP 87 | FILESUBTYPE 0x0L 88 | BEGIN 89 | BLOCK 90 | "StringFileInfo" 91 | BEGIN 92 | BLOCK 93 | "040904e4" 94 | BEGIN 95 | VALUE 96 | "CompanyName", "com.tictactoe" "\0" 97 | VALUE "FileDescription", "flutter_tic_tac_toe" "\0" 98 | VALUE "FileVersion", VERSION_AS_STRING "\0" 99 | VALUE "InternalName", "flutter_tic_tac_toe" "\0" 100 | VALUE "LegalCopyright", "Copyright (C) 2023 com.tictactoe. All rights reserved." "\0" 101 | VALUE "OriginalFilename", "flutter_tic_tac_toe.exe" "\0" 102 | VALUE "ProductName", "flutter_tic_tac_toe" "\0" 103 | VALUE "ProductVersion", VERSION_AS_STRING "\0" 104 | END 105 | END 106 | BLOCK "VarFileInfo" 107 | BEGIN 108 | VALUE 109 | "Translation", 0x409, 1252 110 | END 111 | END 112 | 113 | #endif // English (United States) resources 114 | ///////////////////////////////////////////////////////////////////////////// 115 | 116 | 117 | 118 | #ifndef APSTUDIO_INVOKED 119 | ///////////////////////////////////////////////////////////////////////////// 120 | // 121 | // Generated from the TEXTINCLUDE 3 resource. 122 | // 123 | 124 | 125 | ///////////////////////////////////////////////////////////////////////////// 126 | #endif // not APSTUDIO_INVOKED 127 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 37 | 38 | 39 | 40 | 43 | 49 | 50 | 51 | 52 | 53 | 63 | 65 | 71 | 72 | 73 | 74 | 80 | 82 | 88 | 89 | 90 | 91 | 93 | 94 | 97 | 98 | 99 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: flutter_tic_tac_toe 2 | description: Flutter Tic Tac Toe. 3 | # The following line prevents the package from being accidentally published to 4 | # pub.dev using `flutter pub publish`. This is preferred for private packages. 5 | publish_to: 'none' # Remove this line if you wish to publish to pub.dev 6 | 7 | # The following defines the version and build number for your application. 8 | # A version number is three numbers separated by dots, like 1.2.43 9 | # followed by an optional build number separated by a +. 10 | # Both the version and the builder number may be overridden in flutter 11 | # build by specifying --build-name and --build-number, respectively. 12 | # In Android, build-name is used as versionName while build-number used as versionCode. 13 | # Read more about Android versioning at https://developer.android.com/studio/publish/versioning 14 | # In iOS, build-name is used as CFBundleShortVersionString while build-number is used as CFBundleVersion. 15 | # Read more about iOS versioning at 16 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html 17 | # In Windows, build-name is used as the major, minor, and patch parts 18 | # of the product and file versions while build-number is used as the build suffix. 19 | version: 1.0.0+1 20 | 21 | environment: 22 | sdk: '>=3.0.5 <4.0.0' 23 | 24 | # Dependencies specify other packages that your package needs in order to work. 25 | # To automatically upgrade your package dependencies to the latest versions 26 | # consider running `flutter pub upgrade --major-versions`. Alternatively, 27 | # dependencies can be manually updated by changing the version numbers below to 28 | # the latest version available on pub.dev. To see which dependencies have newer 29 | # versions available, run `flutter pub outdated`. 30 | dependencies: 31 | flutter: 32 | sdk: flutter 33 | 34 | 35 | # The following adds the Cupertino Icons font to your application. 36 | # Use with the CupertinoIcons class for iOS style icons. 37 | cupertino_icons: ^1.0.2 38 | google_fonts: ^5.1.0 39 | flutter_hooks: ^0.20.0 40 | hooks_riverpod: 41 | 42 | 43 | 44 | 45 | # The "flutter_lints" package below contains a set of recommended lints to 46 | # encourage good coding practices. The lint set provided by the package is 47 | # activated in the `analysis_options.yaml` file located at the root of your 48 | # package. See that file for information about deactivating specific lint 49 | # rules and activating additional ones. 50 | flutter_lints: ^2.0.0 51 | hive: 52 | path_provider: 53 | hive_flutter: 54 | hive_generator: 55 | intl: ^0.18.1 56 | gap: ^3.0.1 57 | 58 | # For information on the generic Dart part of this file, see the 59 | # following page: https://dart.dev/tools/pub/pubspec 60 | 61 | # The following section is specific to Flutter packages. 62 | dev_dependencies: 63 | flutter_gen: 64 | flutter_test: 65 | sdk: flutter 66 | build_runner: 67 | dio: 68 | flutter: 69 | uses-material-design: true 70 | generate: true 71 | # To add assets to your application, add an assets section, like this: 72 | # assets: 73 | # - images/a_dot_burr.jpeg 74 | # - images/a_dot_ham.jpeg 75 | 76 | # An image asset can refer to one or more resolution-specific "variants", see 77 | # https://flutter.dev/assets-and-images/#resolution-aware 78 | 79 | # For details regarding adding assets from package dependencies, see 80 | # https://flutter.dev/assets-and-images/#from-packages 81 | 82 | # To add custom fonts to your application, add a fonts section here, 83 | # in this "flutter" section. Each entry in this list should have a 84 | # "family" key with the font family name, and a "fonts" key with a 85 | # list giving the asset and other descriptors for the font. For 86 | # example: 87 | fonts: 88 | - family: PermanentMarker 89 | fonts: 90 | - asset: assets/PermanentMarker-Regular.ttf 91 | 92 | # 93 | # For details regarding fonts from package dependencies, 94 | # see https://flutter.dev/custom-fonts/#from-packages 95 | -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 37 | 38 | 39 | 40 | 43 | 49 | 50 | 51 | 52 | 53 | 63 | 65 | 71 | 72 | 73 | 74 | 80 | 82 | 88 | 89 | 90 | 91 | 93 | 94 | 97 | 98 | 99 | -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- 1 | #ifndef RUNNER_WIN32_WINDOW_H_ 2 | #define RUNNER_WIN32_WINDOW_H_ 3 | 4 | #include 5 | 6 | #include 7 | #include 8 | #include 9 | 10 | // A class abstraction for a high DPI-aware Win32 Window. Intended to be 11 | // inherited from by classes that wish to specialize with custom 12 | // rendering and input handling 13 | class Win32Window { 14 | public: 15 | struct Point { 16 | unsigned int x; 17 | unsigned int y; 18 | 19 | Point(unsigned int x, unsigned int y) : x(x), y(y) {} 20 | }; 21 | 22 | struct Size { 23 | unsigned int width; 24 | unsigned int height; 25 | 26 | Size(unsigned int width, unsigned int height) 27 | : width(width), height(height) {} 28 | }; 29 | 30 | Win32Window(); 31 | 32 | virtual ~Win32Window(); 33 | 34 | // Creates a win32 window with |title| that is positioned and sized using 35 | // |origin| and |size|. New windows are created on the default monitor. Window 36 | // sizes are specified to the OS in physical pixels, hence to ensure a 37 | // consistent size this function will scale the inputted width and height as 38 | // as appropriate for the default monitor. The window is invisible until 39 | // |Show| is called. Returns true if the window was created successfully. 40 | bool Create(const std::wstring &title, const Point &origin, const Size &size); 41 | 42 | // Show the current window. Returns true if the window was successfully shown. 43 | bool Show(); 44 | 45 | // Release OS resources associated with window. 46 | void Destroy(); 47 | 48 | // Inserts |content| into the window tree. 49 | void SetChildContent(HWND content); 50 | 51 | // Returns the backing Window handle to enable clients to set icon and other 52 | // window properties. Returns nullptr if the window has been destroyed. 53 | HWND GetHandle(); 54 | 55 | // If true, closing this window will quit the application. 56 | void SetQuitOnClose(bool quit_on_close); 57 | 58 | // Return a RECT representing the bounds of the current client area. 59 | RECT GetClientArea(); 60 | 61 | protected: 62 | // Processes and route salient window messages for mouse handling, 63 | // size change and DPI. Delegates handling of these to member overloads that 64 | // inheriting classes can handle. 65 | virtual LRESULT MessageHandler(HWND window, 66 | UINT const message, 67 | WPARAM const wparam, 68 | LPARAM const lparam) 69 | 70 | noexcept; 71 | 72 | // Called when CreateAndShow is called, allowing subclass window-related 73 | // setup. Subclasses should return false if setup fails. 74 | virtual bool OnCreate(); 75 | 76 | // Called when Destroy is called. 77 | virtual void OnDestroy(); 78 | 79 | private: 80 | friend class WindowClassRegistrar; 81 | 82 | // OS callback called by message pump. Handles the WM_NCCREATE message which 83 | // is passed when the non-client area is being created and enables automatic 84 | // non-client DPI scaling so that the non-client area automatically 85 | // responds to changes in DPI. All other messages are handled by 86 | // MessageHandler. 87 | static LRESULT CALLBACK 88 | WndProc(HWND 89 | const window, 90 | UINT const message, 91 | WPARAM 92 | const wparam, 93 | LPARAM const lparam 94 | ) 95 | noexcept; 96 | 97 | // Retrieves a class instance pointer for |window| 98 | static Win32Window *GetThisFromHandle(HWND const window) 99 | 100 | noexcept; 101 | 102 | // Update the window frame's theme to match the system theme. 103 | static void UpdateTheme(HWND const window); 104 | 105 | bool quit_on_close_ = false; 106 | 107 | // window handle for top level window. 108 | HWND window_handle_ = nullptr; 109 | 110 | // window handle for hosted content. 111 | HWND child_content_ = nullptr; 112 | }; 113 | 114 | #endif // RUNNER_WIN32_WINDOW_H_ 115 | -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # This file controls Flutter-level build steps. It should not be edited. 2 | cmake_minimum_required(VERSION 3.14) 3 | 4 | set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") 5 | 6 | # Configuration provided via flutter tool. 7 | include(${EPHEMERAL_DIR}/generated_config.cmake) 8 | 9 | # TODO: Move the rest of this into files in ephemeral. See 10 | # https://github.com/flutter/flutter/issues/57146. 11 | set(WRAPPER_ROOT "${EPHEMERAL_DIR}/cpp_client_wrapper") 12 | 13 | # === Flutter Library === 14 | set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/flutter_windows.dll") 15 | 16 | # Published to parent scope for install step. 17 | set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) 18 | set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) 19 | set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) 20 | set(AOT_LIBRARY "${PROJECT_DIR}/build/windows/app.so" PARENT_SCOPE) 21 | 22 | list(APPEND FLUTTER_LIBRARY_HEADERS 23 | "flutter_export.h" 24 | "flutter_windows.h" 25 | "flutter_messenger.h" 26 | "flutter_plugin_registrar.h" 27 | "flutter_texture_registrar.h" 28 | ) 29 | list(TRANSFORM FLUTTER_LIBRARY_HEADERS PREPEND "${EPHEMERAL_DIR}/") 30 | add_library(flutter INTERFACE) 31 | target_include_directories(flutter INTERFACE 32 | "${EPHEMERAL_DIR}" 33 | ) 34 | target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}.lib") 35 | add_dependencies(flutter flutter_assemble) 36 | 37 | # === Wrapper === 38 | list(APPEND CPP_WRAPPER_SOURCES_CORE 39 | "core_implementations.cc" 40 | "standard_codec.cc" 41 | ) 42 | list(TRANSFORM CPP_WRAPPER_SOURCES_CORE PREPEND "${WRAPPER_ROOT}/") 43 | list(APPEND CPP_WRAPPER_SOURCES_PLUGIN 44 | "plugin_registrar.cc" 45 | ) 46 | list(TRANSFORM CPP_WRAPPER_SOURCES_PLUGIN PREPEND "${WRAPPER_ROOT}/") 47 | list(APPEND CPP_WRAPPER_SOURCES_APP 48 | "flutter_engine.cc" 49 | "flutter_view_controller.cc" 50 | ) 51 | list(TRANSFORM CPP_WRAPPER_SOURCES_APP PREPEND "${WRAPPER_ROOT}/") 52 | 53 | # Wrapper sources needed for a plugin. 54 | add_library(flutter_wrapper_plugin STATIC 55 | ${CPP_WRAPPER_SOURCES_CORE} 56 | ${CPP_WRAPPER_SOURCES_PLUGIN} 57 | ) 58 | apply_standard_settings(flutter_wrapper_plugin) 59 | set_target_properties(flutter_wrapper_plugin PROPERTIES 60 | POSITION_INDEPENDENT_CODE ON) 61 | set_target_properties(flutter_wrapper_plugin PROPERTIES 62 | CXX_VISIBILITY_PRESET hidden) 63 | target_link_libraries(flutter_wrapper_plugin PUBLIC flutter) 64 | target_include_directories(flutter_wrapper_plugin PUBLIC 65 | "${WRAPPER_ROOT}/include" 66 | ) 67 | add_dependencies(flutter_wrapper_plugin flutter_assemble) 68 | 69 | # Wrapper sources needed for the runner. 70 | add_library(flutter_wrapper_app STATIC 71 | ${CPP_WRAPPER_SOURCES_CORE} 72 | ${CPP_WRAPPER_SOURCES_APP} 73 | ) 74 | apply_standard_settings(flutter_wrapper_app) 75 | target_link_libraries(flutter_wrapper_app PUBLIC flutter) 76 | target_include_directories(flutter_wrapper_app PUBLIC 77 | "${WRAPPER_ROOT}/include" 78 | ) 79 | add_dependencies(flutter_wrapper_app flutter_assemble) 80 | 81 | # === Flutter tool backend === 82 | # _phony_ is a non-existent file to force this command to run every time, 83 | # since currently there's no way to get a full input/output list from the 84 | # flutter tool. 85 | set(PHONY_OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/_phony_") 86 | set_source_files_properties("${PHONY_OUTPUT}" PROPERTIES SYMBOLIC TRUE) 87 | add_custom_command( 88 | OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} 89 | ${CPP_WRAPPER_SOURCES_CORE} ${CPP_WRAPPER_SOURCES_PLUGIN} 90 | ${CPP_WRAPPER_SOURCES_APP} 91 | ${PHONY_OUTPUT} 92 | COMMAND ${CMAKE_COMMAND} -E env 93 | ${FLUTTER_TOOL_ENVIRONMENT} 94 | "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.bat" 95 | windows-x64 $ 96 | VERBATIM 97 | ) 98 | add_custom_target(flutter_assemble DEPENDS 99 | "${FLUTTER_LIBRARY}" 100 | ${FLUTTER_LIBRARY_HEADERS} 101 | ${CPP_WRAPPER_SOURCES_CORE} 102 | ${CPP_WRAPPER_SOURCES_PLUGIN} 103 | ${CPP_WRAPPER_SOURCES_APP} 104 | ) 105 | -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- 1 | #include "my_application.h" 2 | 3 | #include 4 | 5 | #ifdef GDK_WINDOWING_X11 6 | #include 7 | #endif 8 | 9 | #include "flutter/generated_plugin_registrant.h" 10 | 11 | struct _MyApplication { 12 | GtkApplication parent_instance; 13 | char **dart_entrypoint_arguments; 14 | }; 15 | 16 | G_DEFINE_TYPE(MyApplication, my_application, GTK_TYPE_APPLICATION 17 | ) 18 | 19 | // Implements GApplication::activate. 20 | static void my_application_activate(GApplication *application) { 21 | MyApplication * self = MY_APPLICATION(application); 22 | GtkWindow *window = 23 | GTK_WINDOW(gtk_application_window_new(GTK_APPLICATION(application))); 24 | 25 | // Use a header bar when running in GNOME as this is the common style used 26 | // by applications and is the setup most users will be using (e.g. Ubuntu 27 | // desktop). 28 | // If running on X and not using GNOME then just use a traditional title bar 29 | // in case the window manager does more exotic layout, e.g. tiling. 30 | // If running on Wayland assume the header bar will work (may need changing 31 | // if future cases occur). 32 | gboolean use_header_bar = TRUE; 33 | #ifdef GDK_WINDOWING_X11 34 | GdkScreen* screen = gtk_window_get_screen(window); 35 | if (GDK_IS_X11_SCREEN(screen)) { 36 | const gchar* wm_name = gdk_x11_screen_get_window_manager_name(screen); 37 | if (g_strcmp0(wm_name, "GNOME Shell") != 0) { 38 | use_header_bar = FALSE; 39 | } 40 | } 41 | #endif 42 | if (use_header_bar) { 43 | GtkHeaderBar *header_bar = GTK_HEADER_BAR(gtk_header_bar_new()); 44 | gtk_widget_show(GTK_WIDGET(header_bar)); 45 | gtk_header_bar_set_title(header_bar, "flutter_tic_tac_toe"); 46 | gtk_header_bar_set_show_close_button(header_bar, TRUE); 47 | gtk_window_set_titlebar(window, GTK_WIDGET(header_bar)); 48 | } else { 49 | gtk_window_set_title(window, "flutter_tic_tac_toe"); 50 | } 51 | 52 | gtk_window_set_default_size(window, 1280, 720); 53 | gtk_widget_show(GTK_WIDGET(window)); 54 | 55 | g_autoptr(FlDartProject) 56 | project = fl_dart_project_new(); 57 | fl_dart_project_set_dart_entrypoint_arguments(project, self->dart_entrypoint_arguments); 58 | 59 | FlView *view = fl_view_new(project); 60 | gtk_widget_show(GTK_WIDGET(view)); 61 | gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(view)); 62 | 63 | fl_register_plugins(FL_PLUGIN_REGISTRY(view)); 64 | 65 | gtk_widget_grab_focus(GTK_WIDGET(view)); 66 | } 67 | 68 | // Implements GApplication::local_command_line. 69 | static gboolean 70 | my_application_local_command_line(GApplication *application, gchar ***arguments, int *exit_status) { 71 | MyApplication * self = MY_APPLICATION(application); 72 | // Strip out the first argument as it is the binary name. 73 | self->dart_entrypoint_arguments = g_strdupv(*arguments + 1); 74 | 75 | g_autoptr(GError) 76 | error = nullptr; 77 | if (!g_application_register(application, nullptr, &error)) { 78 | g_warning("Failed to register: %s", error->message); 79 | *exit_status = 1; 80 | return TRUE; 81 | } 82 | 83 | g_application_activate(application); 84 | *exit_status = 0; 85 | 86 | return TRUE; 87 | } 88 | 89 | // Implements GObject::dispose. 90 | static void my_application_dispose(GObject *object) { 91 | MyApplication * self = MY_APPLICATION(object); 92 | g_clear_pointer(&self->dart_entrypoint_arguments, g_strfreev); 93 | G_OBJECT_CLASS(my_application_parent_class)->dispose(object); 94 | } 95 | 96 | static void my_application_class_init(MyApplicationClass *klass) { 97 | G_APPLICATION_CLASS(klass)->activate = my_application_activate; 98 | G_APPLICATION_CLASS(klass)->local_command_line = my_application_local_command_line; 99 | G_OBJECT_CLASS(klass)->dispose = my_application_dispose; 100 | } 101 | 102 | static void my_application_init(MyApplication * self) {} 103 | 104 | MyApplication *my_application_new() { 105 | return MY_APPLICATION(g_object_new(my_application_get_type(), 106 | "application-id", APPLICATION_ID, 107 | "flags", G_APPLICATION_NON_UNIQUE, 108 | nullptr)); 109 | } 110 | -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Project-level configuration. 2 | cmake_minimum_required(VERSION 3.14) 3 | project(flutter_tic_tac_toe LANGUAGES CXX) 4 | 5 | # The name of the executable created for the application. Change this to change 6 | # the on-disk name of your application. 7 | set(BINARY_NAME "flutter_tic_tac_toe") 8 | 9 | # Explicitly opt in to modern CMake behaviors to avoid warnings with recent 10 | # versions of CMake. 11 | cmake_policy(SET CMP0063 NEW) 12 | 13 | # Define build configuration option. 14 | get_property(IS_MULTICONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) 15 | if (IS_MULTICONFIG) 16 | set(CMAKE_CONFIGURATION_TYPES "Debug;Profile;Release" 17 | CACHE STRING "" FORCE) 18 | else () 19 | if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) 20 | set(CMAKE_BUILD_TYPE "Debug" CACHE 21 | STRING "Flutter build mode" FORCE) 22 | set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS 23 | "Debug" "Profile" "Release") 24 | endif () 25 | endif () 26 | # Define settings for the Profile build mode. 27 | set(CMAKE_EXE_LINKER_FLAGS_PROFILE "${CMAKE_EXE_LINKER_FLAGS_RELEASE}") 28 | set(CMAKE_SHARED_LINKER_FLAGS_PROFILE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE}") 29 | set(CMAKE_C_FLAGS_PROFILE "${CMAKE_C_FLAGS_RELEASE}") 30 | set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_RELEASE}") 31 | 32 | # Use Unicode for all projects. 33 | add_definitions(-DUNICODE -D_UNICODE) 34 | 35 | # Compilation settings that should be applied to most targets. 36 | # 37 | # Be cautious about adding new options here, as plugins use this function by 38 | # default. In most cases, you should add new options to specific targets instead 39 | # of modifying this function. 40 | function(APPLY_STANDARD_SETTINGS TARGET) 41 | target_compile_features(${TARGET} PUBLIC cxx_std_17) 42 | target_compile_options(${TARGET} PRIVATE /W4 /WX /wd"4100") 43 | target_compile_options(${TARGET} PRIVATE /EHsc) 44 | target_compile_definitions(${TARGET} PRIVATE "_HAS_EXCEPTIONS=0") 45 | target_compile_definitions(${TARGET} PRIVATE "$<$:_DEBUG>") 46 | endfunction() 47 | 48 | # Flutter library and tool build rules. 49 | set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") 50 | add_subdirectory(${FLUTTER_MANAGED_DIR}) 51 | 52 | # Application build; see runner/CMakeLists.txt. 53 | add_subdirectory("runner") 54 | 55 | 56 | # Generated plugin build rules, which manage building the plugins and adding 57 | # them to the application. 58 | include(flutter/generated_plugins.cmake) 59 | 60 | 61 | # === Installation === 62 | # Support files are copied into place next to the executable, so that it can 63 | # run in place. This is done instead of making a separate bundle (as on Linux) 64 | # so that building and running from within Visual Studio will work. 65 | set(BUILD_BUNDLE_DIR "$") 66 | # Make the "install" step default, as it's required to run. 67 | set(CMAKE_VS_INCLUDE_INSTALL_TO_DEFAULT_BUILD 1) 68 | if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) 69 | set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) 70 | endif () 71 | 72 | set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") 73 | set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}") 74 | 75 | install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" 76 | COMPONENT Runtime) 77 | 78 | install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" 79 | COMPONENT Runtime) 80 | 81 | install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" 82 | COMPONENT Runtime) 83 | 84 | if (PLUGIN_BUNDLED_LIBRARIES) 85 | install(FILES "${PLUGIN_BUNDLED_LIBRARIES}" 86 | DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" 87 | COMPONENT Runtime) 88 | endif () 89 | 90 | # Fully re-copy the assets directory on each build to avoid having stale files 91 | # from a previous install. 92 | set(FLUTTER_ASSET_DIR_NAME "flutter_assets") 93 | install(CODE " 94 | file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") 95 | " COMPONENT Runtime) 96 | install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" 97 | DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) 98 | 99 | # Install the AOT library on non-Debug builds only. 100 | install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" 101 | CONFIGURATIONS Profile;Release 102 | COMPONENT Runtime) 103 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Project-level configuration. 2 | cmake_minimum_required(VERSION 3.10) 3 | project(runner LANGUAGES CXX) 4 | 5 | # The name of the executable created for the application. Change this to change 6 | # the on-disk name of your application. 7 | set(BINARY_NAME "flutter_tic_tac_toe") 8 | # The unique GTK application identifier for this application. See: 9 | # https://wiki.gnome.org/HowDoI/ChooseApplicationID 10 | set(APPLICATION_ID "com.tictactoe.flutter_tic_tac_toe") 11 | 12 | # Explicitly opt in to modern CMake behaviors to avoid warnings with recent 13 | # versions of CMake. 14 | cmake_policy(SET CMP0063 NEW) 15 | 16 | # Load bundled libraries from the lib/ directory relative to the binary. 17 | set(CMAKE_INSTALL_RPATH "$ORIGIN/lib") 18 | 19 | # Root filesystem for cross-building. 20 | if (FLUTTER_TARGET_PLATFORM_SYSROOT) 21 | set(CMAKE_SYSROOT ${FLUTTER_TARGET_PLATFORM_SYSROOT}) 22 | set(CMAKE_FIND_ROOT_PATH ${CMAKE_SYSROOT}) 23 | set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) 24 | set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY) 25 | set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) 26 | set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) 27 | endif () 28 | 29 | # Define build configuration options. 30 | if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) 31 | set(CMAKE_BUILD_TYPE "Debug" CACHE 32 | STRING "Flutter build mode" FORCE) 33 | set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS 34 | "Debug" "Profile" "Release") 35 | endif () 36 | 37 | # Compilation settings that should be applied to most targets. 38 | # 39 | # Be cautious about adding new options here, as plugins use this function by 40 | # default. In most cases, you should add new options to specific targets instead 41 | # of modifying this function. 42 | function(APPLY_STANDARD_SETTINGS TARGET) 43 | target_compile_features(${TARGET} PUBLIC cxx_std_14) 44 | target_compile_options(${TARGET} PRIVATE -Wall -Werror) 45 | target_compile_options(${TARGET} PRIVATE "$<$>:-O3>") 46 | target_compile_definitions(${TARGET} PRIVATE "$<$>:NDEBUG>") 47 | endfunction() 48 | 49 | # Flutter library and tool build rules. 50 | set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") 51 | add_subdirectory(${FLUTTER_MANAGED_DIR}) 52 | 53 | # System-level dependencies. 54 | find_package(PkgConfig REQUIRED) 55 | pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) 56 | 57 | add_definitions(-DAPPLICATION_ID= "${APPLICATION_ID}") 58 | 59 | # Define the application target. To change its name, change BINARY_NAME above, 60 | # not the value here, or `flutter run` will no longer work. 61 | # 62 | # Any new source files that you add to the application should be added here. 63 | add_executable(${BINARY_NAME} 64 | "main.cc" 65 | "my_application.cc" 66 | "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" 67 | ) 68 | 69 | # Apply the standard set of build settings. This can be removed for applications 70 | # that need different build settings. 71 | apply_standard_settings(${BINARY_NAME}) 72 | 73 | # Add dependency libraries. Add any application-specific dependencies here. 74 | target_link_libraries(${BINARY_NAME} PRIVATE flutter) 75 | target_link_libraries(${BINARY_NAME} PRIVATE PkgConfig::GTK) 76 | 77 | # Run the Flutter tool portions of the build. This must not be removed. 78 | add_dependencies(${BINARY_NAME} flutter_assemble) 79 | 80 | # Only the install-generated bundle's copy of the executable will launch 81 | # correctly, since the resources must in the right relative locations. To avoid 82 | # people trying to run the unbundled copy, put it in a subdirectory instead of 83 | # the default top-level location. 84 | set_target_properties(${BINARY_NAME} 85 | PROPERTIES 86 | RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/intermediates_do_not_run" 87 | ) 88 | 89 | 90 | # Generated plugin build rules, which manage building the plugins and adding 91 | # them to the application. 92 | include(flutter/generated_plugins.cmake) 93 | 94 | 95 | # === Installation === 96 | # By default, "installing" just makes a relocatable bundle in the build 97 | # directory. 98 | set(BUILD_BUNDLE_DIR "${PROJECT_BINARY_DIR}/bundle") 99 | if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) 100 | set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) 101 | endif () 102 | 103 | # Start with a clean build bundle directory every time. 104 | install(CODE " 105 | file(REMOVE_RECURSE \"${BUILD_BUNDLE_DIR}/\") 106 | " COMPONENT Runtime) 107 | 108 | set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") 109 | set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}/lib") 110 | 111 | install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" 112 | COMPONENT Runtime) 113 | 114 | install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" 115 | COMPONENT Runtime) 116 | 117 | install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" 118 | COMPONENT Runtime) 119 | 120 | foreach (bundled_library ${PLUGIN_BUNDLED_LIBRARIES}) 121 | install(FILES "${bundled_library}" 122 | DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" 123 | COMPONENT Runtime) 124 | endforeach (bundled_library) 125 | 126 | # Fully re-copy the assets directory on each build to avoid having stale files 127 | # from a previous install. 128 | set(FLUTTER_ASSET_DIR_NAME "flutter_assets") 129 | install(CODE " 130 | file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") 131 | " COMPONENT Runtime) 132 | install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" 133 | DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) 134 | 135 | # Install the AOT library on non-Debug builds only. 136 | if (NOT CMAKE_BUILD_TYPE MATCHES "Debug") 137 | install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" 138 | COMPONENT Runtime) 139 | endif () 140 | -------------------------------------------------------------------------------- /lib/widgets/history_list.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_tic_tac_toe/model/history_hive_model.dart'; 3 | import 'package:flutter_tic_tac_toe/storage/history_box.dart'; 4 | import 'package:flutter_tic_tac_toe/theme/app_sizes.dart'; 5 | import 'package:flutter_tic_tac_toe/theme/colors.dart'; 6 | import 'package:intl/intl.dart'; 7 | 8 | class HistoryListView extends StatelessWidget { 9 | const HistoryListView({ 10 | Key? key, 11 | }) : super(key: key); 12 | 13 | @override 14 | Widget build(BuildContext context) { 15 | List historyList = HistoryBox.getHistory(); 16 | 17 | historyList.sort((a, b) => b.date.compareTo(a.date)); 18 | return Scaffold( 19 | backgroundColor: GameColors.kLighterForeground, 20 | body: historyList.isEmpty 21 | ? const Center( 22 | child: Text( 23 | 'No game history !', 24 | style: TextStyle( 25 | fontSize: 20, 26 | color: GameColors.kWhitish, 27 | fontWeight: FontWeight.bold, 28 | ), 29 | ), 30 | ) 31 | : CustomScrollView( 32 | physics: const BouncingScrollPhysics( 33 | parent: AlwaysScrollableScrollPhysics(), 34 | ), 35 | slivers: [ 36 | SliverList( 37 | delegate: SliverChildBuilderDelegate( 38 | (BuildContext context, int index) => Container( 39 | margin: const EdgeInsets.symmetric( 40 | horizontal: 5, vertical: 5), 41 | width: double.infinity, 42 | decoration: BoxDecoration( 43 | color: Colors.white, 44 | borderRadius: BorderRadius.circular(10), 45 | boxShadow: [ 46 | BoxShadow( 47 | color: Colors.grey.withOpacity(0.2), 48 | spreadRadius: 4, 49 | blurRadius: 4, 50 | offset: const Offset(0, 1), 51 | ), 52 | ], 53 | ), 54 | child: IntrinsicHeight( 55 | child: Row( 56 | crossAxisAlignment: CrossAxisAlignment.stretch, 57 | children: [ 58 | Container( 59 | width: 10, 60 | decoration: BoxDecoration( 61 | color: historyList[index].winner == 'X' 62 | ? GameColors.kBlue 63 | : historyList[index].winner == 'draw' 64 | ? GameColors.kGrey 65 | : GameColors.kPurple, 66 | borderRadius: const BorderRadius.only( 67 | topLeft: Radius.circular(50), 68 | bottomLeft: Radius.circular(50), 69 | ), 70 | ), 71 | ), 72 | Expanded( 73 | child: Padding( 74 | padding: const EdgeInsets.symmetric( 75 | vertical: 5, horizontal: 30), 76 | child: Column( 77 | children: [ 78 | Text( 79 | DateFormat('MMM d, y HH:mm').format( 80 | historyList[index].date.toLocal()), 81 | style: const TextStyle( 82 | fontSize: 14, 83 | fontWeight: FontWeight.w100, 84 | color: Colors.black, 85 | ), 86 | ), 87 | gapM(), 88 | Row( 89 | mainAxisAlignment: 90 | MainAxisAlignment.spaceBetween, 91 | children: [ 92 | Text( 93 | historyList[index].playerXName, 94 | style: const TextStyle( 95 | fontSize: 20, 96 | fontWeight: FontWeight.bold, 97 | color: GameColors.kBlue, 98 | ), 99 | ), 100 | const Text( 101 | "VS", 102 | style: TextStyle( 103 | fontSize: 30, 104 | fontWeight: FontWeight.bold, 105 | ), 106 | ), 107 | Text( 108 | historyList[index].playerOName, 109 | style: const TextStyle( 110 | color: GameColors.kPurple, 111 | fontSize: 20, 112 | fontWeight: FontWeight.bold, 113 | ), 114 | ), 115 | ], 116 | ), 117 | ], 118 | ), 119 | ), 120 | ), 121 | ], 122 | ), 123 | ), 124 | ), 125 | childCount: historyList.length, 126 | ), 127 | ), 128 | ], 129 | ), 130 | ); 131 | } 132 | } 133 | -------------------------------------------------------------------------------- /lib/screens/players_names_screen.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_hooks/flutter_hooks.dart'; 3 | import 'package:flutter_tic_tac_toe/theme/app_sizes.dart'; 4 | import 'package:flutter_tic_tac_toe/theme/colors.dart'; 5 | import 'package:flutter_tic_tac_toe/widgets/button_widget.dart'; 6 | 7 | import '../widgets/wrapper_container.dart'; 8 | import 'game_base_screen.dart'; 9 | 10 | class PlayerNames extends HookWidget { 11 | const PlayerNames({super.key}); 12 | 13 | Widget buildTextField(String hintText, IconData icon, bool isX, 14 | ValueSetter onChanged, TextEditingController controller) => 15 | TextField( 16 | cursorColor: isX ? GameColors.kWhitish : GameColors.kPurple, 17 | style: const TextStyle( 18 | color: GameColors.kWhitish, 19 | ), 20 | controller: controller, 21 | onChanged: onChanged, 22 | maxLength: 10, 23 | decoration: InputDecoration( 24 | counterText: '', 25 | filled: true, 26 | border: OutlineInputBorder( 27 | borderSide: BorderSide.none, 28 | borderRadius: borderRadiusM(), 29 | ), 30 | fillColor: GameColors.kForeground, 31 | hintText: hintText, 32 | hintStyle: const TextStyle(color: GameColors.kBackground), 33 | prefixIcon: Icon( 34 | icon, 35 | color: isX ? GameColors.kBlue : GameColors.kPurple, 36 | ), 37 | ), 38 | ); 39 | 40 | @override 41 | Widget build(BuildContext context) { 42 | final playerXController = useTextEditingController(); 43 | final playerOController = useTextEditingController(); 44 | final isBtnEnabled = useValueNotifier(false); 45 | void checkFields() { 46 | isBtnEnabled.value = playerXController.text.isNotEmpty && 47 | playerOController.text.isNotEmpty; 48 | } 49 | 50 | return Scaffold( 51 | appBar: AppBar( 52 | backgroundColor: GameColors.kGradient1, 53 | leading: IconButton( 54 | onPressed: () { 55 | Navigator.pop(context); 56 | }, 57 | icon: const Icon( 58 | Icons.arrow_back_outlined, 59 | color: GameColors.kWhitish, 60 | ), 61 | ), 62 | ), 63 | body: WrapperContainer( 64 | child: SingleChildScrollView( 65 | child: SizedBox( 66 | height: MediaQuery.of(context).size.height, 67 | child: Column( 68 | mainAxisAlignment: MainAxisAlignment.start, 69 | children: [ 70 | const Expanded( 71 | child: Text( 72 | 'Enter Player Names', 73 | style: TextStyle( 74 | color: Colors.white, 75 | fontSize: 20, 76 | ), 77 | ), 78 | ), 79 | gapXL(), 80 | Expanded( 81 | flex: 3, 82 | child: Column( 83 | children: [ 84 | buildTextField('Player X', Icons.close, true, (value) { 85 | checkFields(); 86 | }, playerXController), 87 | gapL(), 88 | buildTextField('Player O', Icons.circle_outlined, false, 89 | (value) { 90 | checkFields(); 91 | }, playerOController), 92 | gap2XL(), 93 | SizedBox( 94 | width: double.infinity, 95 | child: HookBuilder(builder: (context) { 96 | final isEnabled = useValueListenable(isBtnEnabled); 97 | return ButtonWidget( 98 | isEnabled: isEnabled, 99 | onPressed: () { 100 | if (playerXController.text 101 | .toLowerCase() 102 | .trim() == 103 | playerOController.text 104 | .toLowerCase() 105 | .trim()) { 106 | ScaffoldMessenger.of(context).showSnackBar( 107 | const SnackBar( 108 | backgroundColor: GameColors.kForeground, 109 | content: Text( 110 | 'Please enter different names', 111 | style: TextStyle( 112 | color: GameColors.kWhitish, 113 | ), 114 | ), 115 | ), 116 | ); 117 | 118 | return; 119 | } 120 | FocusScope.of(context).unfocus( 121 | disposition: UnfocusDisposition 122 | .previouslyFocusedChild); 123 | 124 | Navigator.push( 125 | context, 126 | MaterialPageRoute( 127 | builder: (context) => GameBaseScreen( 128 | playerOName: playerOController.text 129 | .toLowerCase() 130 | .trim(), 131 | playerXName: playerXController.text 132 | .toLowerCase() 133 | .trim(), 134 | isAgainstAI: false, 135 | ), 136 | ), 137 | ); 138 | }, 139 | text: 'Start Game'); 140 | }), 141 | ), 142 | ], 143 | ), 144 | ), 145 | ], 146 | ), 147 | ), 148 | ), 149 | ), 150 | ); 151 | } 152 | } 153 | -------------------------------------------------------------------------------- /lib/screens/game_screen.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:google_fonts/google_fonts.dart'; 3 | import 'package:hooks_riverpod/hooks_riverpod.dart'; 4 | 5 | import '../game_logic/check_result.dart'; 6 | import '../game_logic/minimax.dart'; 7 | import '../model/history_hive_model.dart'; 8 | import '../providers/game_providers.dart'; 9 | import '../storage/history_box.dart'; 10 | import '../theme/colors.dart'; 11 | import '../widgets/alert_dialog.dart'; 12 | import '../widgets/scoreboard.dart'; 13 | import '../widgets/wrapper_container.dart'; 14 | 15 | int playerXScore = 0; 16 | int playerOScore = 0; 17 | bool isAIPlaying = false; 18 | 19 | class GameScreen extends ConsumerStatefulWidget { 20 | final String playerXName; 21 | final String playerOName; 22 | final bool isAgainstAI; 23 | 24 | const GameScreen({ 25 | Key? key, 26 | required this.playerXName, 27 | required this.playerOName, 28 | required this.isAgainstAI, 29 | }) : super(key: key); 30 | 31 | @override 32 | ConsumerState createState() => _GameScreenState(); 33 | } 34 | 35 | class _GameScreenState extends ConsumerState { 36 | @override 37 | void dispose() { 38 | playerXScore = 0; 39 | playerOScore = 0; 40 | isAIPlaying = false; 41 | print('GameScreen disposed'); 42 | 43 | super.dispose(); 44 | } 45 | 46 | @override 47 | Widget build(BuildContext context) { 48 | final board = ref.watch(boardProvider); 49 | final currentPlayer = ref.watch(currentPlayerProvider); 50 | final winner = ref.watch(winnerProvider); 51 | 52 | void makeAIMove(boardNotifier, currentPlayerNotifier, winnerNotifier, 53 | BuildContext context) { 54 | int bestScore = -1000; 55 | int bestMoveRow = -1; 56 | int bestMoveCol = -1; 57 | for (int i = 0; i < 3; i++) { 58 | for (int j = 0; j < 3; j++) { 59 | if (board[i][j].isEmpty) { 60 | board[i][j] = 'O'; 61 | int score = minimax(board, false); 62 | board[i][j] = ''; 63 | 64 | if (score > bestScore) { 65 | bestScore = score; 66 | bestMoveRow = i; 67 | bestMoveCol = j; 68 | } 69 | } 70 | } 71 | } 72 | 73 | if (bestMoveRow != -1 && bestMoveCol != -1) { 74 | boardNotifier.updateBoard(bestMoveRow, bestMoveCol, 'O'); 75 | if (checkWin(board, 'O')) { 76 | winnerNotifier.updateWinner('O'); 77 | playerOScore++; 78 | showGameAlertDialog( 79 | "AI wins!", 80 | context, 81 | 'O', 82 | () => resetGame('O', ref, isAgainstAI: widget.isAgainstAI), 83 | ); 84 | } else if (checkDraw(board)) { 85 | winnerNotifier.updateWinner('draw'); 86 | showGameAlertDialog( 87 | "It's a draw!", 88 | context, 89 | 'draw', 90 | () => resetGame('draw', ref, isAgainstAI: widget.isAgainstAI), 91 | ); 92 | } else { 93 | currentPlayerNotifier.togglePlayer(); 94 | } 95 | } 96 | } 97 | 98 | void onCellTap(int row, int col) { 99 | if (isAIPlaying) return; 100 | final boardNotifier = ref.read(boardProvider.notifier); 101 | final currentPlayerNotifier = ref.read(currentPlayerProvider.notifier); 102 | final winnerNotifier = ref.read(winnerProvider.notifier); 103 | 104 | if (board[row][col].isEmpty && winner.isEmpty) { 105 | final currentPlayerValue = currentPlayer; 106 | boardNotifier.updateBoard(row, col, currentPlayerValue); 107 | 108 | if (checkWin(board, currentPlayerValue)) { 109 | winnerNotifier.updateWinner(currentPlayerValue); 110 | if (currentPlayerValue == 'X') { 111 | playerXScore++; 112 | } else { 113 | playerOScore++; 114 | } 115 | showGameAlertDialog( 116 | "Player $currentPlayerValue wins!", 117 | context, 118 | currentPlayerValue, 119 | () => resetGame(currentPlayerValue, ref), 120 | ); 121 | HistoryBox.setHistory(HistoryModelHive( 122 | playerXName: widget.playerXName, 123 | playerOName: widget.playerOName, 124 | winner: currentPlayerValue, 125 | )); 126 | } else if (checkDraw(board)) { 127 | winnerNotifier.updateWinner('draw'); 128 | showGameAlertDialog( 129 | "It's a draw!", 130 | context, 131 | "draw", 132 | () => resetGame(currentPlayerValue, ref), 133 | ); 134 | HistoryBox.setHistory(HistoryModelHive( 135 | playerXName: widget.playerXName, 136 | playerOName: widget.playerOName, 137 | winner: 'draw', 138 | )); 139 | } else { 140 | currentPlayerNotifier.togglePlayer(); 141 | if (widget.isAgainstAI && currentPlayerValue == 'X') { 142 | isAIPlaying = true; 143 | Future.delayed(const Duration(milliseconds: 500), () { 144 | makeAIMove(boardNotifier, currentPlayerNotifier, winnerNotifier, 145 | context); 146 | isAIPlaying = false; 147 | }); 148 | } 149 | } 150 | } 151 | } 152 | 153 | return Scaffold( 154 | body: WrapperContainer( 155 | child: Center( 156 | child: SingleChildScrollView( 157 | child: SizedBox( 158 | height: MediaQuery.of(context).size.height - kToolbarHeight, 159 | child: Column( 160 | mainAxisAlignment: MainAxisAlignment.center, 161 | children: [ 162 | Expanded( 163 | flex: 2, 164 | child: ScoreBoard( 165 | playerXName: widget.playerXName, 166 | playerOName: widget.playerOName, 167 | playerXScore: playerXScore, 168 | playerOScore: playerOScore, 169 | isTurn: currentPlayer == 'X', 170 | ), 171 | ), 172 | const Spacer(), 173 | Expanded( 174 | flex: 6, 175 | child: Container( 176 | margin: const EdgeInsets.all(16), 177 | child: GridView.builder( 178 | padding: const EdgeInsets.all(5.0), 179 | shrinkWrap: true, 180 | gridDelegate: 181 | const SliverGridDelegateWithFixedCrossAxisCount( 182 | crossAxisCount: 3, 183 | crossAxisSpacing: 10.0, 184 | mainAxisSpacing: 10.0, 185 | ), 186 | itemBuilder: (context, index) { 187 | int row = index ~/ 3; 188 | int col = index % 3; 189 | 190 | return GestureDetector( 191 | onTap: () { 192 | if (!isAIPlaying) { 193 | onCellTap(row, col); 194 | } 195 | }, 196 | child: Container( 197 | decoration: const BoxDecoration( 198 | color: Colors.white, 199 | borderRadius: BorderRadius.all( 200 | Radius.circular(10.0), 201 | ), 202 | ), 203 | child: Center( 204 | child: Text( 205 | board[row][col], 206 | style: TextStyle( 207 | fontSize: 50, 208 | fontFamily: GoogleFonts.permanentMarker() 209 | .fontFamily, 210 | fontWeight: FontWeight.bold, 211 | color: board[row][col] == 'X' 212 | ? GameColors.kBlue 213 | : GameColors.kPurple, 214 | ), 215 | ), 216 | ), 217 | ), 218 | ); 219 | }, 220 | itemCount: 9, 221 | ), 222 | ), 223 | ), 224 | ], 225 | ), 226 | ), 227 | ), 228 | ), 229 | ), 230 | ); 231 | } 232 | } 233 | -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- 1 | #include "win32_window.h" 2 | 3 | #include 4 | #include 5 | 6 | #include "resource.h" 7 | 8 | namespace { 9 | 10 | /// Window attribute that enables dark mode window decorations. 11 | /// 12 | /// Redefined in case the developer's machine has a Windows SDK older than 13 | /// version 10.0.22000.0. 14 | /// See: https://docs.microsoft.com/windows/win32/api/dwmapi/ne-dwmapi-dwmwindowattribute 15 | #ifndef DWMWA_USE_IMMERSIVE_DARK_MODE 16 | #define DWMWA_USE_IMMERSIVE_DARK_MODE 20 17 | #endif 18 | 19 | constexpr const wchar_t kWindowClassName[] = L"FLUTTER_RUNNER_WIN32_WINDOW"; 20 | 21 | /// Registry key for app theme preference. 22 | /// 23 | /// A value of 0 indicates apps should use dark mode. A non-zero or missing 24 | /// value indicates apps should use light mode. 25 | constexpr const wchar_t kGetPreferredBrightnessRegKey[] = 26 | L"Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize"; 27 | constexpr const wchar_t kGetPreferredBrightnessRegValue[] = L"AppsUseLightTheme"; 28 | 29 | // The number of Win32Window objects that currently exist. 30 | static int g_active_window_count = 0; 31 | 32 | using EnableNonClientDpiScaling = 33 | BOOL __stdcall(HWND 34 | hwnd); 35 | 36 | // Scale helper to convert logical scaler values to physical using passed in 37 | // scale factor 38 | int Scale(int source, double scale_factor) { 39 | return static_cast(source * scale_factor); 40 | } 41 | 42 | // Dynamically loads the |EnableNonClientDpiScaling| from the User32 module. 43 | // This API is only needed for PerMonitor V1 awareness mode. 44 | void EnableFullDpiSupportIfAvailable(HWND 45 | hwnd) { 46 | HMODULE user32_module = LoadLibraryA("User32.dll"); 47 | if (!user32_module) { 48 | return; 49 | } 50 | auto enable_non_client_dpi_scaling = 51 | reinterpret_cast( 52 | GetProcAddress(user32_module, "EnableNonClientDpiScaling")); 53 | if (enable_non_client_dpi_scaling != nullptr) { 54 | enable_non_client_dpi_scaling(hwnd); 55 | } 56 | FreeLibrary(user32_module); 57 | } 58 | 59 | } // namespace 60 | 61 | // Manages the Win32Window's window class registration. 62 | class WindowClassRegistrar { 63 | public: 64 | ~WindowClassRegistrar() = default; 65 | 66 | // Returns the singleton registrar instance. 67 | static WindowClassRegistrar *GetInstance() { 68 | if (!instance_) { 69 | instance_ = new WindowClassRegistrar(); 70 | } 71 | return instance_; 72 | } 73 | 74 | // Returns the name of the window class, registering the class if it hasn't 75 | // previously been registered. 76 | const wchar_t *GetWindowClass(); 77 | 78 | // Unregisters the window class. Should only be called if there are no 79 | // instances of the window. 80 | void UnregisterWindowClass(); 81 | 82 | private: 83 | WindowClassRegistrar() = default; 84 | 85 | static WindowClassRegistrar *instance_; 86 | 87 | bool class_registered_ = false; 88 | }; 89 | 90 | WindowClassRegistrar *WindowClassRegistrar::instance_ = nullptr; 91 | 92 | const wchar_t *WindowClassRegistrar::GetWindowClass() { 93 | if (!class_registered_) { 94 | WNDCLASS window_class{}; 95 | window_class.hCursor = LoadCursor(nullptr, IDC_ARROW); 96 | window_class.lpszClassName = kWindowClassName; 97 | window_class.style = CS_HREDRAW | CS_VREDRAW; 98 | window_class.cbClsExtra = 0; 99 | window_class.cbWndExtra = 0; 100 | window_class.hInstance = GetModuleHandle(nullptr); 101 | window_class.hIcon = 102 | LoadIcon(window_class.hInstance, MAKEINTRESOURCE(IDI_APP_ICON)); 103 | window_class.hbrBackground = 0; 104 | window_class.lpszMenuName = nullptr; 105 | window_class.lpfnWndProc = Win32Window::WndProc; 106 | RegisterClass(&window_class); 107 | class_registered_ = true; 108 | } 109 | return kWindowClassName; 110 | } 111 | 112 | void WindowClassRegistrar::UnregisterWindowClass() { 113 | UnregisterClass(kWindowClassName, nullptr); 114 | class_registered_ = false; 115 | } 116 | 117 | Win32Window::Win32Window() { 118 | ++g_active_window_count; 119 | } 120 | 121 | Win32Window::~Win32Window() { 122 | --g_active_window_count; 123 | Destroy(); 124 | } 125 | 126 | bool Win32Window::Create(const std::wstring &title, 127 | const Point &origin, 128 | const Size &size) { 129 | Destroy(); 130 | 131 | const wchar_t *window_class = 132 | WindowClassRegistrar::GetInstance()->GetWindowClass(); 133 | 134 | const POINT target_point = {static_cast(origin.x), 135 | static_cast(origin.y)}; 136 | HMONITOR monitor = MonitorFromPoint(target_point, MONITOR_DEFAULTTONEAREST); 137 | UINT dpi = FlutterDesktopGetDpiForMonitor(monitor); 138 | double scale_factor = dpi / 96.0; 139 | 140 | HWND window = CreateWindow( 141 | window_class, title.c_str(), WS_OVERLAPPEDWINDOW, 142 | Scale(origin.x, scale_factor), Scale(origin.y, scale_factor), 143 | Scale(size.width, scale_factor), Scale(size.height, scale_factor), 144 | nullptr, nullptr, GetModuleHandle(nullptr), this); 145 | 146 | if (!window) { 147 | return false; 148 | } 149 | 150 | UpdateTheme(window); 151 | 152 | return OnCreate(); 153 | } 154 | 155 | bool Win32Window::Show() { 156 | return ShowWindow(window_handle_, SW_SHOWNORMAL); 157 | } 158 | 159 | // static 160 | LRESULT CALLBACK 161 | Win32Window::WndProc(HWND 162 | const window, 163 | UINT const message, 164 | WPARAM 165 | const wparam, 166 | LPARAM const lparam 167 | ) noexcept { 168 | if (message == WM_NCCREATE) { 169 | auto window_struct = reinterpret_cast(lparam); 170 | SetWindowLongPtr(window, GWLP_USERDATA, 171 | reinterpret_cast 172 | (window_struct 173 | ->lpCreateParams)); 174 | 175 | auto that = static_cast(window_struct->lpCreateParams); 176 | EnableFullDpiSupportIfAvailable(window); 177 | that-> 178 | window_handle_ = window; 179 | } else if ( 180 | Win32Window *that = GetThisFromHandle(window) 181 | ) { 182 | return that-> 183 | MessageHandler(window, message, wparam, lparam 184 | ); 185 | } 186 | 187 | return 188 | DefWindowProc(window, message, wparam, lparam 189 | ); 190 | } 191 | 192 | LRESULT 193 | Win32Window::MessageHandler(HWND 194 | hwnd, 195 | UINT const message, 196 | WPARAM 197 | const wparam, 198 | LPARAM const lparam 199 | ) noexcept { 200 | switch (message) { 201 | case WM_DESTROY: 202 | window_handle_ = nullptr; 203 | 204 | Destroy(); 205 | 206 | if (quit_on_close_) { 207 | PostQuitMessage(0); 208 | } 209 | return 0; 210 | 211 | case WM_DPICHANGED: { 212 | auto newRectSize = reinterpret_cast(lparam); 213 | LONG newWidth = newRectSize->right - newRectSize->left; 214 | LONG newHeight = newRectSize->bottom - newRectSize->top; 215 | 216 | SetWindowPos(hwnd, nullptr, newRectSize 217 | ->left, newRectSize->top, newWidth, 218 | newHeight, SWP_NOZORDER | SWP_NOACTIVATE); 219 | 220 | return 0; 221 | } 222 | case WM_SIZE: { 223 | RECT rect = GetClientArea(); 224 | if (child_content_ != nullptr) { 225 | // Size and position the child window. 226 | MoveWindow(child_content_, rect 227 | .left, rect.top, rect.right - rect.left, 228 | rect.bottom - rect.top, TRUE); 229 | } 230 | return 0; 231 | } 232 | 233 | case WM_ACTIVATE: 234 | if (child_content_ != nullptr) { 235 | SetFocus(child_content_); 236 | } 237 | return 0; 238 | 239 | case WM_DWMCOLORIZATIONCOLORCHANGED: 240 | UpdateTheme(hwnd); 241 | return 0; 242 | } 243 | 244 | return 245 | DefWindowProc(window_handle_, message, wparam, lparam 246 | ); 247 | } 248 | 249 | void Win32Window::Destroy() { 250 | OnDestroy(); 251 | 252 | if (window_handle_) { 253 | DestroyWindow(window_handle_); 254 | window_handle_ = nullptr; 255 | } 256 | if (g_active_window_count == 0) { 257 | WindowClassRegistrar::GetInstance()->UnregisterWindowClass(); 258 | } 259 | } 260 | 261 | Win32Window *Win32Window::GetThisFromHandle(HWND const window) 262 | 263 | noexcept { 264 | return reinterpret_cast( 265 | GetWindowLongPtr(window, GWLP_USERDATA 266 | )); 267 | } 268 | 269 | void Win32Window::SetChildContent(HWND 270 | content) { 271 | child_content_ = content; 272 | SetParent(content, window_handle_ 273 | ); 274 | RECT frame = GetClientArea(); 275 | 276 | MoveWindow(content, frame 277 | .left, frame.top, frame.right - frame.left, 278 | frame.bottom - frame.top, true); 279 | 280 | SetFocus(child_content_); 281 | } 282 | 283 | RECT Win32Window::GetClientArea() { 284 | RECT frame; 285 | GetClientRect(window_handle_, &frame); 286 | return frame; 287 | } 288 | 289 | HWND Win32Window::GetHandle() { 290 | return window_handle_; 291 | } 292 | 293 | void Win32Window::SetQuitOnClose(bool quit_on_close) { 294 | quit_on_close_ = quit_on_close; 295 | } 296 | 297 | bool Win32Window::OnCreate() { 298 | // No-op; provided for subclasses. 299 | return true; 300 | } 301 | 302 | void Win32Window::OnDestroy() { 303 | // No-op; provided for subclasses. 304 | } 305 | 306 | void Win32Window::UpdateTheme(HWND const window) { 307 | DWORD light_mode; 308 | DWORD light_mode_size = sizeof(light_mode); 309 | LSTATUS result = RegGetValue(HKEY_CURRENT_USER, kGetPreferredBrightnessRegKey, 310 | kGetPreferredBrightnessRegValue, 311 | RRF_RT_REG_DWORD, nullptr, &light_mode, 312 | &light_mode_size); 313 | 314 | if (result == ERROR_SUCCESS) { 315 | BOOL enable_dark_mode = light_mode == 0; 316 | DwmSetWindowAttribute(window, DWMWA_USE_IMMERSIVE_DARK_MODE, 317 | &enable_dark_mode, sizeof(enable_dark_mode)); 318 | } 319 | } 320 | -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 54; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; 11 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; 12 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; 13 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 14 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 15 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 16 | 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; }; 17 | /* End PBXBuildFile section */ 18 | 19 | /* Begin PBXContainerItemProxy section */ 20 | 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = { 21 | isa = PBXContainerItemProxy; 22 | containerPortal = 97C146E61CF9000F007C117D /* Project object */; 23 | proxyType = 1; 24 | remoteGlobalIDString = 97C146ED1CF9000F007C117D; 25 | remoteInfo = Runner; 26 | }; 27 | /* End PBXContainerItemProxy section */ 28 | 29 | /* Begin PBXCopyFilesBuildPhase section */ 30 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = { 31 | isa = PBXCopyFilesBuildPhase; 32 | buildActionMask = 2147483647; 33 | dstPath = ""; 34 | dstSubfolderSpec = 10; 35 | files = ( 36 | ); 37 | name = "Embed Frameworks"; 38 | runOnlyForDeploymentPostprocessing = 0; 39 | }; 40 | /* End PBXCopyFilesBuildPhase section */ 41 | 42 | /* Begin PBXFileReference section */ 43 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 44 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 45 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 46 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; 47 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 48 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 49 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 50 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 51 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 52 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 53 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 54 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 55 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 56 | 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; 57 | 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 58 | /* End PBXFileReference section */ 59 | 60 | /* Begin PBXFrameworksBuildPhase section */ 61 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 62 | isa = PBXFrameworksBuildPhase; 63 | buildActionMask = 2147483647; 64 | files = ( 65 | ); 66 | runOnlyForDeploymentPostprocessing = 0; 67 | }; 68 | /* End PBXFrameworksBuildPhase section */ 69 | 70 | /* Begin PBXGroup section */ 71 | 9740EEB11CF90186004384FC /* Flutter */ = { 72 | isa = PBXGroup; 73 | children = ( 74 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 75 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 76 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 77 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 78 | ); 79 | name = Flutter; 80 | sourceTree = ""; 81 | }; 82 | 331C8082294A63A400263BE5 /* RunnerTests */ = { 83 | isa = PBXGroup; 84 | children = ( 85 | 331C807B294A618700263BE5 /* RunnerTests.swift */, 86 | ); 87 | path = RunnerTests; 88 | sourceTree = ""; 89 | }; 90 | 97C146E51CF9000F007C117D = { 91 | isa = PBXGroup; 92 | children = ( 93 | 9740EEB11CF90186004384FC /* Flutter */, 94 | 97C146F01CF9000F007C117D /* Runner */, 95 | 97C146EF1CF9000F007C117D /* Products */, 96 | 331C8082294A63A400263BE5 /* RunnerTests */, 97 | ); 98 | sourceTree = ""; 99 | }; 100 | 97C146EF1CF9000F007C117D /* Products */ = { 101 | isa = PBXGroup; 102 | children = ( 103 | 97C146EE1CF9000F007C117D /* Runner.app */, 104 | 331C8081294A63A400263BE5 /* RunnerTests.xctest */, 105 | ); 106 | name = Products; 107 | sourceTree = ""; 108 | }; 109 | 97C146F01CF9000F007C117D /* Runner */ = { 110 | isa = PBXGroup; 111 | children = ( 112 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 113 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 114 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 115 | 97C147021CF9000F007C117D /* Info.plist */, 116 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 117 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 118 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, 119 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, 120 | ); 121 | path = Runner; 122 | sourceTree = ""; 123 | }; 124 | /* End PBXGroup section */ 125 | 126 | /* Begin PBXNativeTarget section */ 127 | 331C8080294A63A400263BE5 /* RunnerTests */ = { 128 | isa = PBXNativeTarget; 129 | buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; 130 | buildPhases = ( 131 | 331C807D294A63A400263BE5 /* Sources */, 132 | 331C807E294A63A400263BE5 /* Frameworks */, 133 | 331C807F294A63A400263BE5 /* Resources */, 134 | ); 135 | buildRules = ( 136 | ); 137 | dependencies = ( 138 | 331C8086294A63A400263BE5 /* PBXTargetDependency */, 139 | ); 140 | name = RunnerTests; 141 | productName = RunnerTests; 142 | productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */; 143 | productType = "com.apple.product-type.bundle.unit-test"; 144 | }; 145 | 97C146ED1CF9000F007C117D /* Runner */ = { 146 | isa = PBXNativeTarget; 147 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 148 | buildPhases = ( 149 | 9740EEB61CF901F6004384FC /* Run Script */, 150 | 97C146EA1CF9000F007C117D /* Sources */, 151 | 97C146EB1CF9000F007C117D /* Frameworks */, 152 | 97C146EC1CF9000F007C117D /* Resources */, 153 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 154 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 155 | ); 156 | buildRules = ( 157 | ); 158 | dependencies = ( 159 | ); 160 | name = Runner; 161 | productName = Runner; 162 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 163 | productType = "com.apple.product-type.application"; 164 | }; 165 | /* End PBXNativeTarget section */ 166 | 167 | /* Begin PBXProject section */ 168 | 97C146E61CF9000F007C117D /* Project object */ = { 169 | isa = PBXProject; 170 | attributes = { 171 | LastUpgradeCheck = 1300; 172 | ORGANIZATIONNAME = ""; 173 | TargetAttributes = { 174 | 331C8080294A63A400263BE5 = { 175 | CreatedOnToolsVersion = 14.0; 176 | TestTargetID = 97C146ED1CF9000F007C117D; 177 | }; 178 | 97C146ED1CF9000F007C117D = { 179 | CreatedOnToolsVersion = 7.3.1; 180 | LastSwiftMigration = 1100; 181 | }; 182 | }; 183 | }; 184 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 185 | compatibilityVersion = "Xcode 9.3"; 186 | developmentRegion = en; 187 | hasScannedForEncodings = 0; 188 | knownRegions = ( 189 | en, 190 | Base, 191 | ); 192 | mainGroup = 97C146E51CF9000F007C117D; 193 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 194 | projectDirPath = ""; 195 | projectRoot = ""; 196 | targets = ( 197 | 97C146ED1CF9000F007C117D /* Runner */, 198 | 331C8080294A63A400263BE5 /* RunnerTests */, 199 | ); 200 | }; 201 | /* End PBXProject section */ 202 | 203 | /* Begin PBXResourcesBuildPhase section */ 204 | 331C807F294A63A400263BE5 /* Resources */ = { 205 | isa = PBXResourcesBuildPhase; 206 | buildActionMask = 2147483647; 207 | files = ( 208 | ); 209 | runOnlyForDeploymentPostprocessing = 0; 210 | }; 211 | 97C146EC1CF9000F007C117D /* Resources */ = { 212 | isa = PBXResourcesBuildPhase; 213 | buildActionMask = 2147483647; 214 | files = ( 215 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 216 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 217 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 218 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 219 | ); 220 | runOnlyForDeploymentPostprocessing = 0; 221 | }; 222 | /* End PBXResourcesBuildPhase section */ 223 | 224 | /* Begin PBXShellScriptBuildPhase section */ 225 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 226 | isa = PBXShellScriptBuildPhase; 227 | alwaysOutOfDate = 1; 228 | buildActionMask = 2147483647; 229 | files = ( 230 | ); 231 | inputPaths = ( 232 | "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}", 233 | ); 234 | name = "Thin Binary"; 235 | outputPaths = ( 236 | ); 237 | runOnlyForDeploymentPostprocessing = 0; 238 | shellPath = /bin/sh; 239 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; 240 | }; 241 | 9740EEB61CF901F6004384FC /* Run Script */ = { 242 | isa = PBXShellScriptBuildPhase; 243 | alwaysOutOfDate = 1; 244 | buildActionMask = 2147483647; 245 | files = ( 246 | ); 247 | inputPaths = ( 248 | ); 249 | name = "Run Script"; 250 | outputPaths = ( 251 | ); 252 | runOnlyForDeploymentPostprocessing = 0; 253 | shellPath = /bin/sh; 254 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 255 | }; 256 | /* End PBXShellScriptBuildPhase section */ 257 | 258 | /* Begin PBXSourcesBuildPhase section */ 259 | 331C807D294A63A400263BE5 /* Sources */ = { 260 | isa = PBXSourcesBuildPhase; 261 | buildActionMask = 2147483647; 262 | files = ( 263 | 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */, 264 | ); 265 | runOnlyForDeploymentPostprocessing = 0; 266 | }; 267 | 97C146EA1CF9000F007C117D /* Sources */ = { 268 | isa = PBXSourcesBuildPhase; 269 | buildActionMask = 2147483647; 270 | files = ( 271 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, 272 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 273 | ); 274 | runOnlyForDeploymentPostprocessing = 0; 275 | }; 276 | /* End PBXSourcesBuildPhase section */ 277 | 278 | /* Begin PBXTargetDependency section */ 279 | 331C8086294A63A400263BE5 /* PBXTargetDependency */ = { 280 | isa = PBXTargetDependency; 281 | target = 97C146ED1CF9000F007C117D /* Runner */; 282 | targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */; 283 | }; 284 | /* End PBXTargetDependency section */ 285 | 286 | /* Begin PBXVariantGroup section */ 287 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 288 | isa = PBXVariantGroup; 289 | children = ( 290 | 97C146FB1CF9000F007C117D /* Base */, 291 | ); 292 | name = Main.storyboard; 293 | sourceTree = ""; 294 | }; 295 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 296 | isa = PBXVariantGroup; 297 | children = ( 298 | 97C147001CF9000F007C117D /* Base */, 299 | ); 300 | name = LaunchScreen.storyboard; 301 | sourceTree = ""; 302 | }; 303 | /* End PBXVariantGroup section */ 304 | 305 | /* Begin XCBuildConfiguration section */ 306 | 249021D3217E4FDB00AE95B9 /* Profile */ = { 307 | isa = XCBuildConfiguration; 308 | buildSettings = { 309 | ALWAYS_SEARCH_USER_PATHS = NO; 310 | CLANG_ANALYZER_NONNULL = YES; 311 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 312 | CLANG_CXX_LIBRARY = "libc++"; 313 | CLANG_ENABLE_MODULES = YES; 314 | CLANG_ENABLE_OBJC_ARC = YES; 315 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 316 | CLANG_WARN_BOOL_CONVERSION = YES; 317 | CLANG_WARN_COMMA = YES; 318 | CLANG_WARN_CONSTANT_CONVERSION = YES; 319 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 320 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 321 | CLANG_WARN_EMPTY_BODY = YES; 322 | CLANG_WARN_ENUM_CONVERSION = YES; 323 | CLANG_WARN_INFINITE_RECURSION = YES; 324 | CLANG_WARN_INT_CONVERSION = YES; 325 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 326 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 327 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 328 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 329 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 330 | CLANG_WARN_STRICT_PROTOTYPES = YES; 331 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 332 | CLANG_WARN_UNREACHABLE_CODE = YES; 333 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 334 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 335 | COPY_PHASE_STRIP = NO; 336 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 337 | ENABLE_NS_ASSERTIONS = NO; 338 | ENABLE_STRICT_OBJC_MSGSEND = YES; 339 | GCC_C_LANGUAGE_STANDARD = gnu99; 340 | GCC_NO_COMMON_BLOCKS = YES; 341 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 342 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 343 | GCC_WARN_UNDECLARED_SELECTOR = YES; 344 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 345 | GCC_WARN_UNUSED_FUNCTION = YES; 346 | GCC_WARN_UNUSED_VARIABLE = YES; 347 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 348 | MTL_ENABLE_DEBUG_INFO = NO; 349 | SDKROOT = iphoneos; 350 | SUPPORTED_PLATFORMS = iphoneos; 351 | TARGETED_DEVICE_FAMILY = "1,2"; 352 | VALIDATE_PRODUCT = YES; 353 | }; 354 | name = Profile; 355 | }; 356 | 249021D4217E4FDB00AE95B9 /* Profile */ = { 357 | isa = XCBuildConfiguration; 358 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 359 | buildSettings = { 360 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 361 | CLANG_ENABLE_MODULES = YES; 362 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 363 | ENABLE_BITCODE = NO; 364 | INFOPLIST_FILE = Runner/Info.plist; 365 | LD_RUNPATH_SEARCH_PATHS = ( 366 | "$(inherited)", 367 | "@executable_path/Frameworks", 368 | ); 369 | PRODUCT_BUNDLE_IDENTIFIER = com.tictactoe.flutterTicTacToe; 370 | PRODUCT_NAME = "$(TARGET_NAME)"; 371 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 372 | SWIFT_VERSION = 5.0; 373 | VERSIONING_SYSTEM = "apple-generic"; 374 | }; 375 | name = Profile; 376 | }; 377 | 331C8088294A63A400263BE5 /* Debug */ = { 378 | isa = XCBuildConfiguration; 379 | baseConfigurationReference = AE0B7B92F70575B8D7E0D07E /* Pods-RunnerTests.debug.xcconfig */; 380 | buildSettings = { 381 | BUNDLE_LOADER = "$(TEST_HOST)"; 382 | CODE_SIGN_STYLE = Automatic; 383 | CURRENT_PROJECT_VERSION = 1; 384 | GENERATE_INFOPLIST_FILE = YES; 385 | MARKETING_VERSION = 1.0; 386 | PRODUCT_BUNDLE_IDENTIFIER = com.tictactoe.flutterTicTacToe.RunnerTests; 387 | PRODUCT_NAME = "$(TARGET_NAME)"; 388 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 389 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 390 | SWIFT_VERSION = 5.0; 391 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; 392 | }; 393 | name = Debug; 394 | }; 395 | 331C8089294A63A400263BE5 /* Release */ = { 396 | isa = XCBuildConfiguration; 397 | baseConfigurationReference = 89B67EB44CE7B6631473024E /* Pods-RunnerTests.release.xcconfig */; 398 | buildSettings = { 399 | BUNDLE_LOADER = "$(TEST_HOST)"; 400 | CODE_SIGN_STYLE = Automatic; 401 | CURRENT_PROJECT_VERSION = 1; 402 | GENERATE_INFOPLIST_FILE = YES; 403 | MARKETING_VERSION = 1.0; 404 | PRODUCT_BUNDLE_IDENTIFIER = com.tictactoe.flutterTicTacToe.RunnerTests; 405 | PRODUCT_NAME = "$(TARGET_NAME)"; 406 | SWIFT_VERSION = 5.0; 407 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; 408 | }; 409 | name = Release; 410 | }; 411 | 331C808A294A63A400263BE5 /* Profile */ = { 412 | isa = XCBuildConfiguration; 413 | baseConfigurationReference = 640959BDD8F10B91D80A66BE /* Pods-RunnerTests.profile.xcconfig */; 414 | buildSettings = { 415 | BUNDLE_LOADER = "$(TEST_HOST)"; 416 | CODE_SIGN_STYLE = Automatic; 417 | CURRENT_PROJECT_VERSION = 1; 418 | GENERATE_INFOPLIST_FILE = YES; 419 | MARKETING_VERSION = 1.0; 420 | PRODUCT_BUNDLE_IDENTIFIER = com.tictactoe.flutterTicTacToe.RunnerTests; 421 | PRODUCT_NAME = "$(TARGET_NAME)"; 422 | SWIFT_VERSION = 5.0; 423 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; 424 | }; 425 | name = Profile; 426 | }; 427 | 97C147031CF9000F007C117D /* Debug */ = { 428 | isa = XCBuildConfiguration; 429 | buildSettings = { 430 | ALWAYS_SEARCH_USER_PATHS = NO; 431 | CLANG_ANALYZER_NONNULL = YES; 432 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 433 | CLANG_CXX_LIBRARY = "libc++"; 434 | CLANG_ENABLE_MODULES = YES; 435 | CLANG_ENABLE_OBJC_ARC = YES; 436 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 437 | CLANG_WARN_BOOL_CONVERSION = YES; 438 | CLANG_WARN_COMMA = YES; 439 | CLANG_WARN_CONSTANT_CONVERSION = YES; 440 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 441 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 442 | CLANG_WARN_EMPTY_BODY = YES; 443 | CLANG_WARN_ENUM_CONVERSION = YES; 444 | CLANG_WARN_INFINITE_RECURSION = YES; 445 | CLANG_WARN_INT_CONVERSION = YES; 446 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 447 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 448 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 449 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 450 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 451 | CLANG_WARN_STRICT_PROTOTYPES = YES; 452 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 453 | CLANG_WARN_UNREACHABLE_CODE = YES; 454 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 455 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 456 | COPY_PHASE_STRIP = NO; 457 | DEBUG_INFORMATION_FORMAT = dwarf; 458 | ENABLE_STRICT_OBJC_MSGSEND = YES; 459 | ENABLE_TESTABILITY = YES; 460 | GCC_C_LANGUAGE_STANDARD = gnu99; 461 | GCC_DYNAMIC_NO_PIC = NO; 462 | GCC_NO_COMMON_BLOCKS = YES; 463 | GCC_OPTIMIZATION_LEVEL = 0; 464 | GCC_PREPROCESSOR_DEFINITIONS = ( 465 | "DEBUG=1", 466 | "$(inherited)", 467 | ); 468 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 469 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 470 | GCC_WARN_UNDECLARED_SELECTOR = YES; 471 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 472 | GCC_WARN_UNUSED_FUNCTION = YES; 473 | GCC_WARN_UNUSED_VARIABLE = YES; 474 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 475 | MTL_ENABLE_DEBUG_INFO = YES; 476 | ONLY_ACTIVE_ARCH = YES; 477 | SDKROOT = iphoneos; 478 | TARGETED_DEVICE_FAMILY = "1,2"; 479 | }; 480 | name = Debug; 481 | }; 482 | 97C147041CF9000F007C117D /* Release */ = { 483 | isa = XCBuildConfiguration; 484 | buildSettings = { 485 | ALWAYS_SEARCH_USER_PATHS = NO; 486 | CLANG_ANALYZER_NONNULL = YES; 487 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 488 | CLANG_CXX_LIBRARY = "libc++"; 489 | CLANG_ENABLE_MODULES = YES; 490 | CLANG_ENABLE_OBJC_ARC = YES; 491 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 492 | CLANG_WARN_BOOL_CONVERSION = YES; 493 | CLANG_WARN_COMMA = YES; 494 | CLANG_WARN_CONSTANT_CONVERSION = YES; 495 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 496 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 497 | CLANG_WARN_EMPTY_BODY = YES; 498 | CLANG_WARN_ENUM_CONVERSION = YES; 499 | CLANG_WARN_INFINITE_RECURSION = YES; 500 | CLANG_WARN_INT_CONVERSION = YES; 501 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 502 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 503 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 504 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 505 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 506 | CLANG_WARN_STRICT_PROTOTYPES = YES; 507 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 508 | CLANG_WARN_UNREACHABLE_CODE = YES; 509 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 510 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 511 | COPY_PHASE_STRIP = NO; 512 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 513 | ENABLE_NS_ASSERTIONS = NO; 514 | ENABLE_STRICT_OBJC_MSGSEND = YES; 515 | GCC_C_LANGUAGE_STANDARD = gnu99; 516 | GCC_NO_COMMON_BLOCKS = YES; 517 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 518 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 519 | GCC_WARN_UNDECLARED_SELECTOR = YES; 520 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 521 | GCC_WARN_UNUSED_FUNCTION = YES; 522 | GCC_WARN_UNUSED_VARIABLE = YES; 523 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 524 | MTL_ENABLE_DEBUG_INFO = NO; 525 | SDKROOT = iphoneos; 526 | SUPPORTED_PLATFORMS = iphoneos; 527 | SWIFT_COMPILATION_MODE = wholemodule; 528 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 529 | TARGETED_DEVICE_FAMILY = "1,2"; 530 | VALIDATE_PRODUCT = YES; 531 | }; 532 | name = Release; 533 | }; 534 | 97C147061CF9000F007C117D /* Debug */ = { 535 | isa = XCBuildConfiguration; 536 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 537 | buildSettings = { 538 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 539 | CLANG_ENABLE_MODULES = YES; 540 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 541 | ENABLE_BITCODE = NO; 542 | INFOPLIST_FILE = Runner/Info.plist; 543 | LD_RUNPATH_SEARCH_PATHS = ( 544 | "$(inherited)", 545 | "@executable_path/Frameworks", 546 | ); 547 | PRODUCT_BUNDLE_IDENTIFIER = com.tictactoe.flutterTicTacToe; 548 | PRODUCT_NAME = "$(TARGET_NAME)"; 549 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 550 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 551 | SWIFT_VERSION = 5.0; 552 | VERSIONING_SYSTEM = "apple-generic"; 553 | }; 554 | name = Debug; 555 | }; 556 | 97C147071CF9000F007C117D /* Release */ = { 557 | isa = XCBuildConfiguration; 558 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 559 | buildSettings = { 560 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 561 | CLANG_ENABLE_MODULES = YES; 562 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 563 | ENABLE_BITCODE = NO; 564 | INFOPLIST_FILE = Runner/Info.plist; 565 | LD_RUNPATH_SEARCH_PATHS = ( 566 | "$(inherited)", 567 | "@executable_path/Frameworks", 568 | ); 569 | PRODUCT_BUNDLE_IDENTIFIER = com.tictactoe.flutterTicTacToe; 570 | PRODUCT_NAME = "$(TARGET_NAME)"; 571 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 572 | SWIFT_VERSION = 5.0; 573 | VERSIONING_SYSTEM = "apple-generic"; 574 | }; 575 | name = Release; 576 | }; 577 | /* End XCBuildConfiguration section */ 578 | 579 | /* Begin XCConfigurationList section */ 580 | 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { 581 | isa = XCConfigurationList; 582 | buildConfigurations = ( 583 | 331C8088294A63A400263BE5 /* Debug */, 584 | 331C8089294A63A400263BE5 /* Release */, 585 | 331C808A294A63A400263BE5 /* Profile */, 586 | ); 587 | defaultConfigurationIsVisible = 0; 588 | defaultConfigurationName = Release; 589 | }; 590 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 591 | isa = XCConfigurationList; 592 | buildConfigurations = ( 593 | 97C147031CF9000F007C117D /* Debug */, 594 | 97C147041CF9000F007C117D /* Release */, 595 | 249021D3217E4FDB00AE95B9 /* Profile */, 596 | ); 597 | defaultConfigurationIsVisible = 0; 598 | defaultConfigurationName = Release; 599 | }; 600 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 601 | isa = XCConfigurationList; 602 | buildConfigurations = ( 603 | 97C147061CF9000F007C117D /* Debug */, 604 | 97C147071CF9000F007C117D /* Release */, 605 | 249021D4217E4FDB00AE95B9 /* Profile */, 606 | ); 607 | defaultConfigurationIsVisible = 0; 608 | defaultConfigurationName = Release; 609 | }; 610 | /* End XCConfigurationList section */ 611 | }; 612 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 613 | } 614 | --------------------------------------------------------------------------------