diff --git a/.gitmodules b/.gitmodules
index e68c961a..cce7dee2 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -10,3 +10,7 @@
path = swingmusic-webclient
url = https://github.com/Dvorinka/swingmusic-extended-webclient
branch = master
+[submodule "swingmusic-mobile"]
+ path = swingmusic_mobile
+ url = https://github.com/Dvorinka/swingmusic-mobile.git
+ branch = master
diff --git a/swingmusic_mobile/.gitignore b/swingmusic_mobile/.gitignore
new file mode 100644
index 00000000..db984b4a
--- /dev/null
+++ b/swingmusic_mobile/.gitignore
@@ -0,0 +1,157 @@
+# Miscellaneous
+*.class
+*.log
+*.pyc
+*.swp
+.DS_Store
+.atom/
+.build/
+.buildlog/
+.history
+.svn/
+.swiftpm/
+migrate_working_dir/
+
+# IntelliJ related
+*.iml
+*.ipr
+*.iws
+.idea/
+
+# VS Code related
+.vscode/
+!.vscode/settings.json
+!.vscode/tasks.json
+!.vscode/launch.json
+!.vscode/extensions.json
+
+# Flutter/Dart/Pub related
+**/doc/api/
+**/ios/Flutter/.last_build_id
+.dart_tool/
+.flutter-plugins-dependencies
+.pub-cache/
+.pub/
+/build/
+/coverage/
+.packages
+.pub-cache/
+.pub/
+/build/
+
+# Symbolication related
+app.*.symbols
+
+# Obfuscation related
+app.*.map.json
+
+# Android Studio will place build artifacts here
+/android/app/debug
+/android/app/profile
+/android/app/release
+/android/gradlew
+/android/gradlew.bat
+/android/local.properties
+/android/.gradle/
+/android/captures/
+/android/gradlew
+/android/gradlew.bat
+/android/local.properties
+/android/.gradle/
+
+# iOS/Xcode related
+/ios/Flutter/Flutter.framework
+/ios/Flutter/Flutter.podspec
+/ios/.symlinks/
+/ios/Pods/
+/ios/.symlinks/
+/ios/Pods/
+/ios/Flutter/App.framework
+/ios/Flutter/Flutter.framework
+/ios/Flutter/Flutter.podspec
+/ios/Flutter/Generated.xcconfig
+/ios/Flutter/ephemeral/
+/ios/app.flx
+/ios/app.zip
+/ios/app_flutter/
+/ios/flutter_assets/
+/ios/service_account.json
+
+# Web related
+/web/
+
+# Windows related
+/windows/flutter/generated_plugin_registrant.cc
+/windows/flutter/generated_plugin_registrant.h
+/windows/flutter/generated_plugins.cmake
+
+# Linux related
+/linux/flutter/generated_plugin_registrant.cc
+/linux/flutter/generated_plugin_registrant.h
+/linux/flutter/generated_plugins.cmake
+
+# macOS related
+/macos/Flutter/Generated.xcconfig
+/macos/Flutter/ephemeral/
+/macos/Flutter/flutter_assets/
+/macos/Flutter/App.framework
+/macos/Flutter/Flutter.framework
+/macos/Flutter/Flutter.podspec
+
+# Test coverage
+/coverage/
+
+# Environment files
+.env
+.env.local
+.env.development
+.env.test
+.env.production
+
+# API keys and secrets
+**/api_keys.dart
+**/secrets.dart
+**/config.dart
+
+# Temporary files
+*.tmp
+*.temp
+*.bak
+*.backup
+
+# Logs
+logs/
+*.log
+
+# Database files
+*.db
+*.sqlite
+*.sqlite3
+
+# Generated files
+*.g.dart
+*.freezed.dart
+*.mocks.dart
+
+# Node.js (if using for build tools)
+node_modules/
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+# Firebase
+google-services.json
+GoogleService-Info.plist
+
+# Localization
+*.arb
+
+# Assets that should be managed separately
+/assets/audio/
+/assets/images/large/
+*.mp3
+*.flac
+*.wav
+*.aac
+*.ogg
+*.m4a
diff --git a/swingmusic_mobile/.metadata b/swingmusic_mobile/.metadata
new file mode 100644
index 00000000..83b34ebb
--- /dev/null
+++ b/swingmusic_mobile/.metadata
@@ -0,0 +1,45 @@
+# This file tracks properties of this Flutter project.
+# Used by Flutter tool to assess capabilities and perform upgrades etc.
+#
+# This file should be version controlled and should not be manually edited.
+
+version:
+ revision: "f6ff1529fd6d8af5f706051d9251ac9231c83407"
+ channel: "stable"
+
+project_type: app
+
+# Tracks metadata for the flutter migrate command
+migration:
+ platforms:
+ - platform: root
+ create_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407
+ base_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407
+ - platform: android
+ create_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407
+ base_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407
+ - platform: ios
+ create_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407
+ base_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407
+ - platform: linux
+ create_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407
+ base_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407
+ - platform: macos
+ create_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407
+ base_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407
+ - platform: web
+ create_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407
+ base_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407
+ - platform: windows
+ create_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407
+ base_revision: f6ff1529fd6d8af5f706051d9251ac9231c83407
+
+ # User provided section
+
+ # List of Local paths (relative to this file) that should be
+ # ignored by the migrate tool.
+ #
+ # Files that are not part of the templates will be ignored by default.
+ unmanaged_files:
+ - 'lib/main.dart'
+ - 'ios/Runner.xcodeproj/project.pbxproj'
diff --git a/swingmusic_mobile/README.md b/swingmusic_mobile/README.md
new file mode 100644
index 00000000..49d435b1
--- /dev/null
+++ b/swingmusic_mobile/README.md
@@ -0,0 +1,16 @@
+# swingmusic_mobile
+
+A new Flutter project.
+
+## Getting Started
+
+This project is a starting point for a Flutter application.
+
+A few resources to get you started if this is your first Flutter project:
+
+- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
+- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
+
+For help getting started with Flutter development, view the
+[online documentation](https://docs.flutter.dev/), which offers tutorials,
+samples, guidance on mobile development, and a full API reference.
diff --git a/swingmusic_mobile/analysis_options.yaml b/swingmusic_mobile/analysis_options.yaml
new file mode 100644
index 00000000..0d290213
--- /dev/null
+++ b/swingmusic_mobile/analysis_options.yaml
@@ -0,0 +1,28 @@
+# This file configures the analyzer, which statically analyzes Dart code to
+# check for errors, warnings, and lints.
+#
+# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
+# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
+# invoked from the command line by running `flutter analyze`.
+
+# The following line activates a set of recommended lints for Flutter apps,
+# packages, and plugins designed to encourage good coding practices.
+include: package:flutter_lints/flutter.yaml
+
+linter:
+ # The lint rules applied to this project can be customized in the
+ # section below to disable rules from the `package:flutter_lints/flutter.yaml`
+ # included above or to enable additional rules. A list of all available lints
+ # and their documentation is published at https://dart.dev/lints.
+ #
+ # Instead of disabling a lint rule for the entire project in the
+ # section below, it can also be suppressed for a single line of code
+ # or a specific dart file by using the `// ignore: name_of_lint` and
+ # `// ignore_for_file: name_of_lint` syntax on the line or in the file
+ # producing the lint.
+ rules:
+ # avoid_print: false # Uncomment to disable the `avoid_print` rule
+ # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
+
+# Additional information about this file can be found at
+# https://dart.dev/guides/language/analysis-options
diff --git a/swingmusic_mobile/android/.gitignore b/swingmusic_mobile/android/.gitignore
new file mode 100644
index 00000000..be3943c9
--- /dev/null
+++ b/swingmusic_mobile/android/.gitignore
@@ -0,0 +1,14 @@
+gradle-wrapper.jar
+/.gradle
+/captures/
+/gradlew
+/gradlew.bat
+/local.properties
+GeneratedPluginRegistrant.java
+.cxx/
+
+# Remember to never publicly share your keystore.
+# See https://flutter.dev/to/reference-keystore
+key.properties
+**/*.keystore
+**/*.jks
diff --git a/swingmusic_mobile/android/app/build.gradle.kts b/swingmusic_mobile/android/app/build.gradle.kts
new file mode 100644
index 00000000..4edb8304
--- /dev/null
+++ b/swingmusic_mobile/android/app/build.gradle.kts
@@ -0,0 +1,44 @@
+plugins {
+ id("com.android.application")
+ id("kotlin-android")
+ // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
+ id("dev.flutter.flutter-gradle-plugin")
+}
+
+android {
+ namespace = "com.dvorinka.swingmusic.swingmusic_mobile"
+ compileSdk = flutter.compileSdkVersion
+ ndkVersion = flutter.ndkVersion
+
+ compileOptions {
+ sourceCompatibility = JavaVersion.VERSION_17
+ targetCompatibility = JavaVersion.VERSION_17
+ }
+
+ kotlinOptions {
+ jvmTarget = JavaVersion.VERSION_17.toString()
+ }
+
+ defaultConfig {
+ // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
+ applicationId = "com.dvorinka.swingmusic.swingmusic_mobile"
+ // You can update the following values to match your application needs.
+ // For more information, see: https://flutter.dev/to/review-gradle-config.
+ minSdk = flutter.minSdkVersion
+ targetSdk = flutter.targetSdkVersion
+ versionCode = flutter.versionCode
+ versionName = flutter.versionName
+ }
+
+ buildTypes {
+ release {
+ // TODO: Add your own signing config for the release build.
+ // Signing with the debug keys for now, so `flutter run --release` works.
+ signingConfig = signingConfigs.getByName("debug")
+ }
+ }
+}
+
+flutter {
+ source = "../.."
+}
diff --git a/swingmusic_mobile/android/app/src/debug/AndroidManifest.xml b/swingmusic_mobile/android/app/src/debug/AndroidManifest.xml
new file mode 100644
index 00000000..399f6981
--- /dev/null
+++ b/swingmusic_mobile/android/app/src/debug/AndroidManifest.xml
@@ -0,0 +1,7 @@
+
+
+
+
diff --git a/swingmusic_mobile/android/app/src/main/AndroidManifest.xml b/swingmusic_mobile/android/app/src/main/AndroidManifest.xml
new file mode 100644
index 00000000..2888c9fd
--- /dev/null
+++ b/swingmusic_mobile/android/app/src/main/AndroidManifest.xml
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/swingmusic_mobile/android/app/src/main/kotlin/com/dvorinka/swingmusic/swingmusic_mobile/MainActivity.kt b/swingmusic_mobile/android/app/src/main/kotlin/com/dvorinka/swingmusic/swingmusic_mobile/MainActivity.kt
new file mode 100644
index 00000000..cf523c39
--- /dev/null
+++ b/swingmusic_mobile/android/app/src/main/kotlin/com/dvorinka/swingmusic/swingmusic_mobile/MainActivity.kt
@@ -0,0 +1,5 @@
+package com.dvorinka.swingmusic.swingmusic_mobile
+
+import io.flutter.embedding.android.FlutterActivity
+
+class MainActivity : FlutterActivity()
diff --git a/swingmusic_mobile/android/app/src/main/res/drawable-v21/launch_background.xml b/swingmusic_mobile/android/app/src/main/res/drawable-v21/launch_background.xml
new file mode 100644
index 00000000..f74085f3
--- /dev/null
+++ b/swingmusic_mobile/android/app/src/main/res/drawable-v21/launch_background.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/swingmusic_mobile/android/app/src/main/res/drawable/launch_background.xml b/swingmusic_mobile/android/app/src/main/res/drawable/launch_background.xml
new file mode 100644
index 00000000..304732f8
--- /dev/null
+++ b/swingmusic_mobile/android/app/src/main/res/drawable/launch_background.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/swingmusic_mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/swingmusic_mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 00000000..db77bb4b
Binary files /dev/null and b/swingmusic_mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/swingmusic_mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/swingmusic_mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 00000000..17987b79
Binary files /dev/null and b/swingmusic_mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/swingmusic_mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/swingmusic_mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 00000000..09d43914
Binary files /dev/null and b/swingmusic_mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/swingmusic_mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/swingmusic_mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 00000000..d5f1c8d3
Binary files /dev/null and b/swingmusic_mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/swingmusic_mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/swingmusic_mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 00000000..4d6372ee
Binary files /dev/null and b/swingmusic_mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/swingmusic_mobile/android/app/src/main/res/values-night/styles.xml b/swingmusic_mobile/android/app/src/main/res/values-night/styles.xml
new file mode 100644
index 00000000..06952be7
--- /dev/null
+++ b/swingmusic_mobile/android/app/src/main/res/values-night/styles.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
diff --git a/swingmusic_mobile/android/app/src/main/res/values/styles.xml b/swingmusic_mobile/android/app/src/main/res/values/styles.xml
new file mode 100644
index 00000000..cb1ef880
--- /dev/null
+++ b/swingmusic_mobile/android/app/src/main/res/values/styles.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
diff --git a/swingmusic_mobile/android/app/src/profile/AndroidManifest.xml b/swingmusic_mobile/android/app/src/profile/AndroidManifest.xml
new file mode 100644
index 00000000..399f6981
--- /dev/null
+++ b/swingmusic_mobile/android/app/src/profile/AndroidManifest.xml
@@ -0,0 +1,7 @@
+
+
+
+
diff --git a/swingmusic_mobile/android/build.gradle.kts b/swingmusic_mobile/android/build.gradle.kts
new file mode 100644
index 00000000..dbee657b
--- /dev/null
+++ b/swingmusic_mobile/android/build.gradle.kts
@@ -0,0 +1,24 @@
+allprojects {
+ repositories {
+ google()
+ mavenCentral()
+ }
+}
+
+val newBuildDir: Directory =
+ rootProject.layout.buildDirectory
+ .dir("../../build")
+ .get()
+rootProject.layout.buildDirectory.value(newBuildDir)
+
+subprojects {
+ val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name)
+ project.layout.buildDirectory.value(newSubprojectBuildDir)
+}
+subprojects {
+ project.evaluationDependsOn(":app")
+}
+
+tasks.register("clean") {
+ delete(rootProject.layout.buildDirectory)
+}
diff --git a/swingmusic_mobile/android/gradle.properties b/swingmusic_mobile/android/gradle.properties
new file mode 100644
index 00000000..fbee1d8c
--- /dev/null
+++ b/swingmusic_mobile/android/gradle.properties
@@ -0,0 +1,2 @@
+org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError
+android.useAndroidX=true
diff --git a/swingmusic_mobile/android/gradle/wrapper/gradle-wrapper.properties b/swingmusic_mobile/android/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 00000000..e4ef43fb
--- /dev/null
+++ b/swingmusic_mobile/android/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,5 @@
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-all.zip
diff --git a/swingmusic_mobile/android/settings.gradle.kts b/swingmusic_mobile/android/settings.gradle.kts
new file mode 100644
index 00000000..ca7fe065
--- /dev/null
+++ b/swingmusic_mobile/android/settings.gradle.kts
@@ -0,0 +1,26 @@
+pluginManagement {
+ val flutterSdkPath =
+ run {
+ val properties = java.util.Properties()
+ file("local.properties").inputStream().use { properties.load(it) }
+ val flutterSdkPath = properties.getProperty("flutter.sdk")
+ require(flutterSdkPath != null) { "flutter.sdk not set in local.properties" }
+ flutterSdkPath
+ }
+
+ includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
+
+ repositories {
+ google()
+ mavenCentral()
+ gradlePluginPortal()
+ }
+}
+
+plugins {
+ id("dev.flutter.flutter-plugin-loader") version "1.0.0"
+ id("com.android.application") version "8.11.1" apply false
+ id("org.jetbrains.kotlin.android") version "2.2.20" apply false
+}
+
+include(":app")
diff --git a/swingmusic_mobile/ios/.gitignore b/swingmusic_mobile/ios/.gitignore
new file mode 100644
index 00000000..7a7f9873
--- /dev/null
+++ b/swingmusic_mobile/ios/.gitignore
@@ -0,0 +1,34 @@
+**/dgph
+*.mode1v3
+*.mode2v3
+*.moved-aside
+*.pbxuser
+*.perspectivev3
+**/*sync/
+.sconsign.dblite
+.tags*
+**/.vagrant/
+**/DerivedData/
+Icon?
+**/Pods/
+**/.symlinks/
+profile
+xcuserdata
+**/.generated/
+Flutter/App.framework
+Flutter/Flutter.framework
+Flutter/Flutter.podspec
+Flutter/Generated.xcconfig
+Flutter/ephemeral/
+Flutter/app.flx
+Flutter/app.zip
+Flutter/flutter_assets/
+Flutter/flutter_export_environment.sh
+ServiceDefinitions.json
+Runner/GeneratedPluginRegistrant.*
+
+# Exceptions to above rules.
+!default.mode1v3
+!default.mode2v3
+!default.pbxuser
+!default.perspectivev3
diff --git a/swingmusic_mobile/ios/Flutter/AppFrameworkInfo.plist b/swingmusic_mobile/ios/Flutter/AppFrameworkInfo.plist
new file mode 100644
index 00000000..1dc6cf76
--- /dev/null
+++ b/swingmusic_mobile/ios/Flutter/AppFrameworkInfo.plist
@@ -0,0 +1,26 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ en
+ CFBundleExecutable
+ App
+ CFBundleIdentifier
+ io.flutter.flutter.app
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ App
+ CFBundlePackageType
+ FMWK
+ CFBundleShortVersionString
+ 1.0
+ CFBundleSignature
+ ????
+ CFBundleVersion
+ 1.0
+ MinimumOSVersion
+ 13.0
+
+
diff --git a/swingmusic_mobile/ios/Flutter/Debug.xcconfig b/swingmusic_mobile/ios/Flutter/Debug.xcconfig
new file mode 100644
index 00000000..592ceee8
--- /dev/null
+++ b/swingmusic_mobile/ios/Flutter/Debug.xcconfig
@@ -0,0 +1 @@
+#include "Generated.xcconfig"
diff --git a/swingmusic_mobile/ios/Flutter/Release.xcconfig b/swingmusic_mobile/ios/Flutter/Release.xcconfig
new file mode 100644
index 00000000..592ceee8
--- /dev/null
+++ b/swingmusic_mobile/ios/Flutter/Release.xcconfig
@@ -0,0 +1 @@
+#include "Generated.xcconfig"
diff --git a/swingmusic_mobile/ios/Runner.xcodeproj/project.pbxproj b/swingmusic_mobile/ios/Runner.xcodeproj/project.pbxproj
new file mode 100644
index 00000000..de0d01fa
--- /dev/null
+++ b/swingmusic_mobile/ios/Runner.xcodeproj/project.pbxproj
@@ -0,0 +1,616 @@
+// !$*UTF8*$!
+{
+ archiveVersion = 1;
+ classes = {
+ };
+ objectVersion = 54;
+ objects = {
+
+/* Begin PBXBuildFile section */
+ 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
+ 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
+ 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
+ 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
+ 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
+ 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
+ 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXContainerItemProxy section */
+ 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 97C146E61CF9000F007C117D /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = 97C146ED1CF9000F007C117D;
+ remoteInfo = Runner;
+ };
+/* End PBXContainerItemProxy section */
+
+/* Begin PBXCopyFilesBuildPhase section */
+ 9705A1C41CF9048500538489 /* Embed Frameworks */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ dstPath = "";
+ dstSubfolderSpec = 10;
+ files = (
+ );
+ name = "Embed Frameworks";
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXCopyFilesBuildPhase section */
+
+/* Begin PBXFileReference section */
+ 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; };
+ 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; };
+ 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; };
+ 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
+ 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; };
+ 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; };
+ 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
+ 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; };
+ 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; };
+ 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; };
+ 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
+ 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
+ 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
+ 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+ 97C146EB1CF9000F007C117D /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+ 331C8082294A63A400263BE5 /* RunnerTests */ = {
+ isa = PBXGroup;
+ children = (
+ 331C807B294A618700263BE5 /* RunnerTests.swift */,
+ );
+ path = RunnerTests;
+ sourceTree = "";
+ };
+ 9740EEB11CF90186004384FC /* Flutter */ = {
+ isa = PBXGroup;
+ children = (
+ 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
+ 9740EEB21CF90195004384FC /* Debug.xcconfig */,
+ 7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
+ 9740EEB31CF90195004384FC /* Generated.xcconfig */,
+ );
+ name = Flutter;
+ sourceTree = "";
+ };
+ 97C146E51CF9000F007C117D = {
+ isa = PBXGroup;
+ children = (
+ 9740EEB11CF90186004384FC /* Flutter */,
+ 97C146F01CF9000F007C117D /* Runner */,
+ 97C146EF1CF9000F007C117D /* Products */,
+ 331C8082294A63A400263BE5 /* RunnerTests */,
+ );
+ sourceTree = "";
+ };
+ 97C146EF1CF9000F007C117D /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 97C146EE1CF9000F007C117D /* Runner.app */,
+ 331C8081294A63A400263BE5 /* RunnerTests.xctest */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ 97C146F01CF9000F007C117D /* Runner */ = {
+ isa = PBXGroup;
+ children = (
+ 97C146FA1CF9000F007C117D /* Main.storyboard */,
+ 97C146FD1CF9000F007C117D /* Assets.xcassets */,
+ 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
+ 97C147021CF9000F007C117D /* Info.plist */,
+ 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
+ 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
+ 74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
+ 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
+ );
+ path = Runner;
+ sourceTree = "";
+ };
+/* End PBXGroup section */
+
+/* Begin PBXNativeTarget section */
+ 331C8080294A63A400263BE5 /* RunnerTests */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
+ buildPhases = (
+ 331C807D294A63A400263BE5 /* Sources */,
+ 331C807F294A63A400263BE5 /* Resources */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ 331C8086294A63A400263BE5 /* PBXTargetDependency */,
+ );
+ name = RunnerTests;
+ productName = RunnerTests;
+ productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */;
+ productType = "com.apple.product-type.bundle.unit-test";
+ };
+ 97C146ED1CF9000F007C117D /* Runner */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
+ buildPhases = (
+ 9740EEB61CF901F6004384FC /* Run Script */,
+ 97C146EA1CF9000F007C117D /* Sources */,
+ 97C146EB1CF9000F007C117D /* Frameworks */,
+ 97C146EC1CF9000F007C117D /* Resources */,
+ 9705A1C41CF9048500538489 /* Embed Frameworks */,
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = Runner;
+ productName = Runner;
+ productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
+ productType = "com.apple.product-type.application";
+ };
+/* End PBXNativeTarget section */
+
+/* Begin PBXProject section */
+ 97C146E61CF9000F007C117D /* Project object */ = {
+ isa = PBXProject;
+ attributes = {
+ BuildIndependentTargetsInParallel = YES;
+ LastUpgradeCheck = 1510;
+ ORGANIZATIONNAME = "";
+ TargetAttributes = {
+ 331C8080294A63A400263BE5 = {
+ CreatedOnToolsVersion = 14.0;
+ TestTargetID = 97C146ED1CF9000F007C117D;
+ };
+ 97C146ED1CF9000F007C117D = {
+ CreatedOnToolsVersion = 7.3.1;
+ LastSwiftMigration = 1100;
+ };
+ };
+ };
+ buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
+ compatibilityVersion = "Xcode 9.3";
+ developmentRegion = en;
+ hasScannedForEncodings = 0;
+ knownRegions = (
+ en,
+ Base,
+ );
+ mainGroup = 97C146E51CF9000F007C117D;
+ productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
+ projectDirPath = "";
+ projectRoot = "";
+ targets = (
+ 97C146ED1CF9000F007C117D /* Runner */,
+ 331C8080294A63A400263BE5 /* RunnerTests */,
+ );
+ };
+/* End PBXProject section */
+
+/* Begin PBXResourcesBuildPhase section */
+ 331C807F294A63A400263BE5 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 97C146EC1CF9000F007C117D /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
+ 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
+ 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
+ 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXResourcesBuildPhase section */
+
+/* Begin PBXShellScriptBuildPhase section */
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
+ isa = PBXShellScriptBuildPhase;
+ alwaysOutOfDate = 1;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputPaths = (
+ "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
+ );
+ name = "Thin Binary";
+ outputPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
+ };
+ 9740EEB61CF901F6004384FC /* Run Script */ = {
+ isa = PBXShellScriptBuildPhase;
+ alwaysOutOfDate = 1;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputPaths = (
+ );
+ name = "Run Script";
+ outputPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
+ };
+/* End PBXShellScriptBuildPhase section */
+
+/* Begin PBXSourcesBuildPhase section */
+ 331C807D294A63A400263BE5 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 97C146EA1CF9000F007C117D /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
+ 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXSourcesBuildPhase section */
+
+/* Begin PBXTargetDependency section */
+ 331C8086294A63A400263BE5 /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ target = 97C146ED1CF9000F007C117D /* Runner */;
+ targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */;
+ };
+/* End PBXTargetDependency section */
+
+/* Begin PBXVariantGroup section */
+ 97C146FA1CF9000F007C117D /* Main.storyboard */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 97C146FB1CF9000F007C117D /* Base */,
+ );
+ name = Main.storyboard;
+ sourceTree = "";
+ };
+ 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 97C147001CF9000F007C117D /* Base */,
+ );
+ name = LaunchScreen.storyboard;
+ sourceTree = "";
+ };
+/* End PBXVariantGroup section */
+
+/* Begin XCBuildConfiguration section */
+ 249021D3217E4FDB00AE95B9 /* Profile */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ SDKROOT = iphoneos;
+ SUPPORTED_PLATFORMS = iphoneos;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
+ };
+ name = Profile;
+ };
+ 249021D4217E4FDB00AE95B9 /* Profile */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.dvorinka.swingmusic.swingmusicMobile;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Profile;
+ };
+ 331C8088294A63A400263BE5 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 1;
+ GENERATE_INFOPLIST_FILE = YES;
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.dvorinka.swingmusic.swingmusicMobile.RunnerTests;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ SWIFT_VERSION = 5.0;
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
+ };
+ name = Debug;
+ };
+ 331C8089294A63A400263BE5 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 1;
+ GENERATE_INFOPLIST_FILE = YES;
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.dvorinka.swingmusic.swingmusicMobile.RunnerTests;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_VERSION = 5.0;
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
+ };
+ name = Release;
+ };
+ 331C808A294A63A400263BE5 /* Profile */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 1;
+ GENERATE_INFOPLIST_FILE = YES;
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.dvorinka.swingmusic.swingmusicMobile.RunnerTests;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_VERSION = 5.0;
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
+ };
+ name = Profile;
+ };
+ 97C147031CF9000F007C117D /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = dwarf;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_TESTABILITY = YES;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "DEBUG=1",
+ "$(inherited)",
+ );
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
+ MTL_ENABLE_DEBUG_INFO = YES;
+ ONLY_ACTIVE_ARCH = YES;
+ SDKROOT = iphoneos;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ };
+ name = Debug;
+ };
+ 97C147041CF9000F007C117D /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ SDKROOT = iphoneos;
+ SUPPORTED_PLATFORMS = iphoneos;
+ SWIFT_COMPILATION_MODE = wholemodule;
+ SWIFT_OPTIMIZATION_LEVEL = "-O";
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
+ };
+ name = Release;
+ };
+ 97C147061CF9000F007C117D /* Debug */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.dvorinka.swingmusic.swingmusicMobile;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Debug;
+ };
+ 97C147071CF9000F007C117D /* Release */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.dvorinka.swingmusic.swingmusicMobile;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Release;
+ };
+/* End XCBuildConfiguration section */
+
+/* Begin XCConfigurationList section */
+ 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 331C8088294A63A400263BE5 /* Debug */,
+ 331C8089294A63A400263BE5 /* Release */,
+ 331C808A294A63A400263BE5 /* Profile */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 97C147031CF9000F007C117D /* Debug */,
+ 97C147041CF9000F007C117D /* Release */,
+ 249021D3217E4FDB00AE95B9 /* Profile */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 97C147061CF9000F007C117D /* Debug */,
+ 97C147071CF9000F007C117D /* Release */,
+ 249021D4217E4FDB00AE95B9 /* Profile */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+/* End XCConfigurationList section */
+ };
+ rootObject = 97C146E61CF9000F007C117D /* Project object */;
+}
diff --git a/swingmusic_mobile/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/swingmusic_mobile/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 00000000..919434a6
--- /dev/null
+++ b/swingmusic_mobile/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/swingmusic_mobile/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/swingmusic_mobile/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 00000000..18d98100
--- /dev/null
+++ b/swingmusic_mobile/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/swingmusic_mobile/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/swingmusic_mobile/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file mode 100644
index 00000000..f9b0d7c5
--- /dev/null
+++ b/swingmusic_mobile/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
@@ -0,0 +1,8 @@
+
+
+
+
+ PreviewsEnabled
+
+
+
diff --git a/swingmusic_mobile/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/swingmusic_mobile/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
new file mode 100644
index 00000000..e3773d42
--- /dev/null
+++ b/swingmusic_mobile/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
@@ -0,0 +1,101 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/swingmusic_mobile/ios/Runner.xcworkspace/contents.xcworkspacedata b/swingmusic_mobile/ios/Runner.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 00000000..1d526a16
--- /dev/null
+++ b/swingmusic_mobile/ios/Runner.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/swingmusic_mobile/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/swingmusic_mobile/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 00000000..18d98100
--- /dev/null
+++ b/swingmusic_mobile/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/swingmusic_mobile/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/swingmusic_mobile/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file mode 100644
index 00000000..f9b0d7c5
--- /dev/null
+++ b/swingmusic_mobile/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
@@ -0,0 +1,8 @@
+
+
+
+
+ PreviewsEnabled
+
+
+
diff --git a/swingmusic_mobile/ios/Runner/AppDelegate.swift b/swingmusic_mobile/ios/Runner/AppDelegate.swift
new file mode 100644
index 00000000..62666446
--- /dev/null
+++ b/swingmusic_mobile/ios/Runner/AppDelegate.swift
@@ -0,0 +1,13 @@
+import Flutter
+import UIKit
+
+@main
+@objc class AppDelegate: FlutterAppDelegate {
+ override func application(
+ _ application: UIApplication,
+ didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
+ ) -> Bool {
+ GeneratedPluginRegistrant.register(with: self)
+ return super.application(application, didFinishLaunchingWithOptions: launchOptions)
+ }
+}
diff --git a/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
new file mode 100644
index 00000000..d36b1fab
--- /dev/null
+++ b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
@@ -0,0 +1,122 @@
+{
+ "images" : [
+ {
+ "size" : "20x20",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-20x20@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "20x20",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-20x20@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-29x29@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-29x29@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-29x29@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-40x40@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-40x40@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "60x60",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-60x60@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "60x60",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-60x60@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "20x20",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-20x20@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "20x20",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-20x20@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-29x29@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-29x29@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-40x40@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-40x40@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "76x76",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-76x76@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "76x76",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-76x76@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "83.5x83.5",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-83.5x83.5@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "1024x1024",
+ "idiom" : "ios-marketing",
+ "filename" : "Icon-App-1024x1024@1x.png",
+ "scale" : "1x"
+ }
+ ],
+ "info" : {
+ "version" : 1,
+ "author" : "xcode"
+ }
+}
diff --git a/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
new file mode 100644
index 00000000..dc9ada47
Binary files /dev/null and b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ
diff --git a/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
new file mode 100644
index 00000000..7353c41e
Binary files /dev/null and b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ
diff --git a/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
new file mode 100644
index 00000000..797d452e
Binary files /dev/null and b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ
diff --git a/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
new file mode 100644
index 00000000..6ed2d933
Binary files /dev/null and b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ
diff --git a/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
new file mode 100644
index 00000000..4cd7b009
Binary files /dev/null and b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ
diff --git a/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
new file mode 100644
index 00000000..fe730945
Binary files /dev/null and b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ
diff --git a/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
new file mode 100644
index 00000000..321773cd
Binary files /dev/null and b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ
diff --git a/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
new file mode 100644
index 00000000..797d452e
Binary files /dev/null and b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ
diff --git a/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
new file mode 100644
index 00000000..502f463a
Binary files /dev/null and b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ
diff --git a/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
new file mode 100644
index 00000000..0ec30343
Binary files /dev/null and b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ
diff --git a/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
new file mode 100644
index 00000000..0ec30343
Binary files /dev/null and b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ
diff --git a/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
new file mode 100644
index 00000000..e9f5fea2
Binary files /dev/null and b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ
diff --git a/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
new file mode 100644
index 00000000..84ac32ae
Binary files /dev/null and b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ
diff --git a/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
new file mode 100644
index 00000000..8953cba0
Binary files /dev/null and b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ
diff --git a/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
new file mode 100644
index 00000000..0467bf12
Binary files /dev/null and b/swingmusic_mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ
diff --git a/swingmusic_mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/swingmusic_mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
new file mode 100644
index 00000000..0bedcf2f
--- /dev/null
+++ b/swingmusic_mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
@@ -0,0 +1,23 @@
+{
+ "images" : [
+ {
+ "idiom" : "universal",
+ "filename" : "LaunchImage.png",
+ "scale" : "1x"
+ },
+ {
+ "idiom" : "universal",
+ "filename" : "LaunchImage@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "idiom" : "universal",
+ "filename" : "LaunchImage@3x.png",
+ "scale" : "3x"
+ }
+ ],
+ "info" : {
+ "version" : 1,
+ "author" : "xcode"
+ }
+}
diff --git a/swingmusic_mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/swingmusic_mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
new file mode 100644
index 00000000..9da19eac
Binary files /dev/null and b/swingmusic_mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ
diff --git a/swingmusic_mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/swingmusic_mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
new file mode 100644
index 00000000..9da19eac
Binary files /dev/null and b/swingmusic_mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ
diff --git a/swingmusic_mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/swingmusic_mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
new file mode 100644
index 00000000..9da19eac
Binary files /dev/null and b/swingmusic_mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ
diff --git a/swingmusic_mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/swingmusic_mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
new file mode 100644
index 00000000..89c2725b
--- /dev/null
+++ b/swingmusic_mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
@@ -0,0 +1,5 @@
+# Launch Screen Assets
+
+You can customize the launch screen with your own desired assets by replacing the image files in this directory.
+
+You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images.
\ No newline at end of file
diff --git a/swingmusic_mobile/ios/Runner/Base.lproj/LaunchScreen.storyboard b/swingmusic_mobile/ios/Runner/Base.lproj/LaunchScreen.storyboard
new file mode 100644
index 00000000..f2e259c7
--- /dev/null
+++ b/swingmusic_mobile/ios/Runner/Base.lproj/LaunchScreen.storyboard
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/swingmusic_mobile/ios/Runner/Base.lproj/Main.storyboard b/swingmusic_mobile/ios/Runner/Base.lproj/Main.storyboard
new file mode 100644
index 00000000..f3c28516
--- /dev/null
+++ b/swingmusic_mobile/ios/Runner/Base.lproj/Main.storyboard
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/swingmusic_mobile/ios/Runner/Info.plist b/swingmusic_mobile/ios/Runner/Info.plist
new file mode 100644
index 00000000..d8e1cf11
--- /dev/null
+++ b/swingmusic_mobile/ios/Runner/Info.plist
@@ -0,0 +1,49 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ $(DEVELOPMENT_LANGUAGE)
+ CFBundleDisplayName
+ Swingmusic Mobile
+ CFBundleExecutable
+ $(EXECUTABLE_NAME)
+ CFBundleIdentifier
+ $(PRODUCT_BUNDLE_IDENTIFIER)
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ swingmusic_mobile
+ CFBundlePackageType
+ APPL
+ CFBundleShortVersionString
+ $(FLUTTER_BUILD_NAME)
+ CFBundleSignature
+ ????
+ CFBundleVersion
+ $(FLUTTER_BUILD_NUMBER)
+ LSRequiresIPhoneOS
+
+ UILaunchStoryboardName
+ LaunchScreen
+ UIMainStoryboardFile
+ Main
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ CADisableMinimumFrameDurationOnPhone
+
+ UIApplicationSupportsIndirectInputEvents
+
+
+
diff --git a/swingmusic_mobile/ios/Runner/Runner-Bridging-Header.h b/swingmusic_mobile/ios/Runner/Runner-Bridging-Header.h
new file mode 100644
index 00000000..308a2a56
--- /dev/null
+++ b/swingmusic_mobile/ios/Runner/Runner-Bridging-Header.h
@@ -0,0 +1 @@
+#import "GeneratedPluginRegistrant.h"
diff --git a/swingmusic_mobile/ios/RunnerTests/RunnerTests.swift b/swingmusic_mobile/ios/RunnerTests/RunnerTests.swift
new file mode 100644
index 00000000..86a7c3b1
--- /dev/null
+++ b/swingmusic_mobile/ios/RunnerTests/RunnerTests.swift
@@ -0,0 +1,12 @@
+import Flutter
+import UIKit
+import XCTest
+
+class RunnerTests: XCTestCase {
+
+ func testExample() {
+ // If you add code to the Runner application, consider adding tests here.
+ // See https://developer.apple.com/documentation/xctest for more information about using XCTest.
+ }
+
+}
diff --git a/swingmusic_mobile/lib/core/constants/app_constants.dart b/swingmusic_mobile/lib/core/constants/app_constants.dart
new file mode 100644
index 00000000..b029087c
--- /dev/null
+++ b/swingmusic_mobile/lib/core/constants/app_constants.dart
@@ -0,0 +1,71 @@
+class AppConstants {
+ // App Info
+ static const String appName = 'SwingMusic';
+ static const String appVersion = '1.0.0';
+
+ // API Configuration
+ static const String defaultApiUrl = 'http://localhost:8181';
+ static const Duration apiTimeout = Duration(seconds: 30);
+ static const int maxRetries = 3;
+
+ // Audio Configuration
+ static const Duration audioFadeDuration = Duration(milliseconds: 500);
+ static const int maxAudioCacheSize = 100 * 1024 * 1024; // 100MB
+ static const String audioCacheKey = 'audio_cache';
+
+ // UI Configuration
+ static const double defaultPadding = 16.0;
+ static const double smallPadding = 8.0;
+ static const double largePadding = 24.0;
+ static const double borderRadius = 12.0;
+ static const double cardBorderRadius = 16.0;
+
+ // Animation Durations
+ static const Duration fastAnimation = Duration(milliseconds: 200);
+ static const Duration mediumAnimation = Duration(milliseconds: 300);
+ static const Duration slowAnimation = Duration(milliseconds: 500);
+
+ // Image Dimensions
+ static const double albumArtSize = 56.0;
+ static const double largeAlbumArtSize = 200.0;
+ static const double artistImageSize = 80.0;
+
+ // Storage Keys
+ static const String themeKey = 'app_theme';
+ static const String authTokenKey = 'auth_token';
+ static const String userProfileKey = 'user_profile';
+ static const String settingsKey = 'app_settings';
+ static const String favoritesKey = 'favorites';
+ static const String playlistsKey = 'playlists';
+
+ // Pagination
+ static const int defaultPageSize = 20;
+ static const int searchPageSize = 15;
+
+ // Audio Quality
+ static const Map audioQualities = {
+ 'low': '96kbps',
+ 'medium': '192kbps',
+ 'high': '320kbps',
+ 'lossless': 'FLAC',
+ };
+
+ // Error Messages
+ static const String networkErrorMessage = 'Please check your internet connection';
+ static const String serverErrorMessage = 'Server is temporarily unavailable';
+ static const String authErrorMessage = 'Please login to continue';
+ static const String genericErrorMessage = 'Something went wrong. Please try again';
+
+ // Routes
+ static const String homeRoute = '/home';
+ static const String libraryRoute = '/library';
+ static const String playerRoute = '/player';
+ static const String searchRoute = '/search';
+ static const String playlistsRoute = '/playlists';
+ static const String settingsRoute = '/settings';
+ static const String authRoute = '/auth';
+ static const String qrRoute = '/qr';
+ static const String offlineRoute = '/offline';
+ static const String analyticsRoute = '/analytics';
+ static const String profileRoute = '/profile';
+}
diff --git a/swingmusic_mobile/lib/core/constants/app_icons.dart b/swingmusic_mobile/lib/core/constants/app_icons.dart
new file mode 100644
index 00000000..58a53824
--- /dev/null
+++ b/swingmusic_mobile/lib/core/constants/app_icons.dart
@@ -0,0 +1,97 @@
+import 'package:flutter/material.dart';
+
+/// Unified icon constants and sizes matching web client
+class AppIcons {
+ // Navigation icons
+ static const IconData home = Icons.home_outlined;
+ static const IconData homeFilled = Icons.home;
+ static const IconData search = Icons.search_outlined;
+ static const IconData searchFilled = Icons.search;
+ static const IconData library = Icons.library_music_outlined;
+ static const IconData libraryFilled = Icons.library_music;
+
+ // Media control icons
+ static const IconData play = Icons.play_arrow;
+ static const IconData pause = Icons.pause;
+ static const IconData skipBack = Icons.skip_previous;
+ static const IconData skipForward = Icons.skip_next;
+ static const IconData volume = Icons.volume_up_outlined;
+ static const IconData volumeMuted = Icons.volume_off_outlined;
+
+ // Content icons
+ static const IconData album = Icons.album;
+ static const IconData artist = Icons.person;
+ static const IconData track = Icons.music_note;
+ static const IconData folder = Icons.folder;
+ static const IconData playlist = Icons.playlist_play;
+ static const IconData favorite = Icons.favorite_border;
+ static const IconData favoriteFilled = Icons.favorite;
+
+ // Action icons
+ static const IconData more = Icons.more_vert;
+ static const IconData add = Icons.add;
+ static const IconData download = Icons.download;
+ static const IconData share = Icons.share;
+ static const IconData settings = Icons.settings;
+ static const IconData notifications = Icons.notifications_outlined;
+ static const IconData user = Icons.person;
+
+ // Status icons
+ static const IconData playing = Icons.equalizer;
+ static const IconData success = Icons.check_circle;
+ static const IconData error = Icons.error;
+ static const IconData warning = Icons.warning;
+ static const IconData info = Icons.info;
+}
+
+/// Unified icon sizes matching web client
+class AppIconSizes {
+ static const double xs = 16.0;
+ static const double sm = 20.0;
+ static const double md = 24.0;
+ static const double lg = 32.0;
+ static const double xl = 48.0;
+ static const double xxl = 64.0;
+
+ // Navigation icons
+ static const double navigationSize = sm;
+
+ // Media control icons
+ static const double mediaControlSize = lg;
+ static const double mediaControlSmallSize = md;
+
+ // Content icons
+ static const double contentIconSize = md;
+ static const double contentIconLargeSize = lg;
+
+ // Action icons
+ static const double actionIconSize = sm;
+ static const double actionIconLargeSize = md;
+
+ // Status icons
+ static const double statusIconSize = sm;
+ static const double statusIconLargeSize = md;
+}
+
+/// Icon widget with consistent styling
+class AppIcon extends StatelessWidget {
+ final IconData icon;
+ final double? size;
+ final Color? color;
+
+ const AppIcon({
+ super.key,
+ required this.icon,
+ this.size,
+ this.color,
+ });
+
+ @override
+ Widget build(BuildContext context) {
+ return Icon(
+ icon,
+ size: size ?? AppIconSizes.contentIconSize,
+ color: color ?? Theme.of(context).colorScheme.onSurface,
+ );
+ }
+}
diff --git a/swingmusic_mobile/lib/core/constants/app_spacing.dart b/swingmusic_mobile/lib/core/constants/app_spacing.dart
new file mode 100644
index 00000000..e73d2c9e
--- /dev/null
+++ b/swingmusic_mobile/lib/core/constants/app_spacing.dart
@@ -0,0 +1,128 @@
+import 'package:flutter/material.dart';
+
+/// Unified spacing constants matching web client design tokens exactly
+class AppSpacing {
+ // Base spacing unit (4px) matching web client
+ static const double xs = 4.0; // 0.25rem = $smallest
+ static const double sm = 8.0; // 0.5rem = $smaller
+ static const double md = 12.0; // 0.75rem
+ static const double lg = 16.0; // 1rem = $small
+ static const double xl = 20.0; // 1.25rem
+ static const double xxl = 24.0; // 1.5rem = $medium
+ static const double xxxl = 32.0; // 2rem = $large
+ static const double larger = 32.0; // $larger = 2rem
+
+ // Web client exact sizing from _variables.scss
+ static const double bannerHeight = 288.0; // $banner-height: 18rem
+ static const double songItemHeight = 64.0; // $song-item-height: 4rem
+ static const double contentPaddingBottom = 32.0; // $content-padding-bottom: 2rem
+ static const double navHeight = 72.0; // $navheight: 4.5rem
+ static const double cardWidth = 172.0; // $cardwidth: 10.75rem
+ static const double maxPadLeft = 80.0; // $maxpadleft: 5rem
+ static const double padBottom = 64.0; // $padbottom: 4rem
+
+ // Web client specific component sizing
+ static const double buttonHeight = 36.0; // 2.25rem from basic.scss
+ static const double buttonMoreWidth = 40.0; // 2.5rem from basic.scss
+ static const double progressBarHeight = 4.8; // 0.3rem from ProgressBar.scss
+ static const double searchHeight = 36.0; // 2.25rem from inputs.scss
+ static const double tabHeight = 32.0; // 2rem from search-tabheaders.scss
+ static const double stateSize = 32.0; // 2rem from state.scss
+ static const double explicitIconWidth = 14.4; // 0.9rem from basic.scss
+ static const double spinnerSize = 20.0; // 1.25rem from basic.scss
+
+ // Grid spacing matching web client album-grid.scss
+ static const double gridPadding = 16.0; // 1rem padding
+ static const double gridGap = 16.0; // 1rem gap
+ static const double gridGapVertical = 32.0; // 2rem vertical gap
+ static const double gridMinWidth = 144.0; // 9rem min-width
+
+ // Consistent padding
+ static const EdgeInsets paddingXS = EdgeInsets.all(xs);
+ static const EdgeInsets paddingSM = EdgeInsets.all(sm);
+ static const EdgeInsets paddingMD = EdgeInsets.all(md);
+ static const EdgeInsets paddingLG = EdgeInsets.all(lg);
+ static const EdgeInsets paddingXL = EdgeInsets.all(xl);
+
+ // Consistent margins
+ static const EdgeInsets marginXS = EdgeInsets.all(xs);
+ static const EdgeInsets marginSM = EdgeInsets.all(sm);
+ static const EdgeInsets marginMD = EdgeInsets.all(md);
+ static const EdgeInsets marginLG = EdgeInsets.all(lg);
+ static const EdgeInsets marginXL = EdgeInsets.all(xl);
+
+ // Horizontal spacing
+ static const EdgeInsets horizontalXS = EdgeInsets.symmetric(horizontal: xs);
+ static const EdgeInsets horizontalSM = EdgeInsets.symmetric(horizontal: sm);
+ static const EdgeInsets horizontalMD = EdgeInsets.symmetric(horizontal: md);
+ static const EdgeInsets horizontalLG = EdgeInsets.symmetric(horizontal: lg);
+ static const EdgeInsets horizontalXL = EdgeInsets.symmetric(horizontal: xl);
+
+ // Vertical spacing
+ static const EdgeInsets verticalXS = EdgeInsets.symmetric(vertical: xs);
+ static const EdgeInsets verticalSM = EdgeInsets.symmetric(vertical: sm);
+ static const EdgeInsets verticalMD = EdgeInsets.symmetric(vertical: md);
+ static const EdgeInsets verticalLG = EdgeInsets.symmetric(vertical: lg);
+ static const EdgeInsets verticalXL = EdgeInsets.symmetric(vertical: xl);
+
+ // Card spacing matching web client album card
+ static const EdgeInsets cardPadding = EdgeInsets.all(lg);
+ static const EdgeInsets cardMargin = EdgeInsets.all(sm);
+
+ // List spacing
+ static const EdgeInsets listPadding = EdgeInsets.symmetric(vertical: sm);
+ static const double listItemSpacing = sm;
+
+ // Section spacing
+ static const double sectionSpacing = xxl;
+ static const EdgeInsets sectionPadding = EdgeInsets.all(lg);
+
+ // Button spacing matching web client
+ static const EdgeInsets buttonPadding = EdgeInsets.symmetric(horizontal: lg, vertical: md);
+
+ // Form spacing
+ static const double formFieldSpacing = md;
+ static const EdgeInsets formPadding = EdgeInsets.all(lg);
+
+ // Animation and timing constants matching web client
+ static const Duration transitionFast = Duration(milliseconds: 200); // 0.2s ease-out
+ static const Duration transitionNormal = Duration(milliseconds: 250); // 0.25s ease
+ static const Duration transitionSlow = Duration(milliseconds: 300); // 0.3s ease
+ static const Duration spinnerDuration = Duration(milliseconds: 450); // 0.45s linear infinite
+ static const Duration pulseDuration = Duration(milliseconds: 600); // 0.6s infinite
+ static const Duration pulseDelay = Duration(milliseconds: 120); // $i * 0.12s
+
+ // Z-index values matching web client
+ static const int dimmerZIndex = 1001; // From Global/index.scss
+}
+
+/// Unified border radius constants matching web client exactly
+class AppBorderRadius {
+ static const double xs = 4.0; // 0.25rem
+ static const double sm = 8.0; // 0.5rem = $small
+ static const double md = 12.0; // 0.75rem
+ static const double lg = 16.0; // 1rem = $rounded
+ static const double xl = 20.0; // 1.25rem = $rounded-lg
+ static const double xxl = 24.0; // 1.5rem = $rounded-md
+ static const double circular = 160.0; // 10rem = .circular
+ static const double full = 9999.0;
+
+ // Web client specific border radius values
+ static const double progressBar = 5.0; // 5px from ProgressBar.scss
+ static const double input = 3.0; // 3px from inputs.scss
+ static const double scrollbar = 16.0; // 16px from scrollbars.scss
+ static const double searchInput = 3.0; // 3px from inputs.scss
+ static const double duration = 8.0; // 0.5rem from BottomBar.scss
+ static const double dragImage = 4.0; // $smaller from basic.scss
+ static const double badge = 4.0; // $smaller from basic.scss
+ static const double explicitIcon = 4.0; // $smaller from basic.scss
+
+ static BorderRadius circularXS = BorderRadius.circular(xs);
+ static BorderRadius circularSM = BorderRadius.circular(sm);
+ static BorderRadius circularMD = BorderRadius.circular(md);
+ static BorderRadius circularLG = BorderRadius.circular(lg);
+ static BorderRadius circularXL = BorderRadius.circular(xl);
+ static BorderRadius circularXXL = BorderRadius.circular(xxl);
+ static BorderRadius circularFull = BorderRadius.circular(full);
+ static BorderRadius circularCircular = BorderRadius.circular(circular);
+}
diff --git a/swingmusic_mobile/lib/core/enums/auth_state.dart b/swingmusic_mobile/lib/core/enums/auth_state.dart
new file mode 100644
index 00000000..9794eb12
--- /dev/null
+++ b/swingmusic_mobile/lib/core/enums/auth_state.dart
@@ -0,0 +1,24 @@
+enum AuthState {
+ loggedOut,
+ authenticating,
+ authenticated,
+ error;
+
+ String get displayName {
+ switch (this) {
+ case AuthState.loggedOut:
+ return 'Logged Out';
+ case AuthState.authenticating:
+ return 'Authenticating';
+ case AuthState.authenticated:
+ return 'Authenticated';
+ case AuthState.error:
+ return 'Error';
+ }
+ }
+
+ bool get isLoggedIn => this == AuthState.authenticated;
+ bool get isLoggedOut => this == AuthState.loggedOut;
+ bool get isAuthenticating => this == AuthState.authenticating;
+ bool get hasError => this == AuthState.error;
+}
diff --git a/swingmusic_mobile/lib/core/enums/playback_mode.dart b/swingmusic_mobile/lib/core/enums/playback_mode.dart
new file mode 100644
index 00000000..f4bf8c7a
--- /dev/null
+++ b/swingmusic_mobile/lib/core/enums/playback_mode.dart
@@ -0,0 +1,50 @@
+enum RepeatMode {
+ off,
+ one,
+ all;
+
+ String get displayName {
+ switch (this) {
+ case RepeatMode.off:
+ return 'Off';
+ case RepeatMode.one:
+ return 'Repeat One';
+ case RepeatMode.all:
+ return 'Repeat All';
+ }
+ }
+
+ RepeatMode next() {
+ switch (this) {
+ case RepeatMode.off:
+ return RepeatMode.all;
+ case RepeatMode.all:
+ return RepeatMode.one;
+ case RepeatMode.one:
+ return RepeatMode.off;
+ }
+ }
+}
+
+enum ShuffleMode {
+ off,
+ on;
+
+ String get displayName {
+ switch (this) {
+ case ShuffleMode.off:
+ return 'Off';
+ case ShuffleMode.on:
+ return 'On';
+ }
+ }
+
+ ShuffleMode toggle() {
+ switch (this) {
+ case ShuffleMode.off:
+ return ShuffleMode.on;
+ case ShuffleMode.on:
+ return ShuffleMode.off;
+ }
+ }
+}
diff --git a/swingmusic_mobile/lib/core/themes/app_theme.dart b/swingmusic_mobile/lib/core/themes/app_theme.dart
new file mode 100644
index 00000000..dea7f7df
--- /dev/null
+++ b/swingmusic_mobile/lib/core/themes/app_theme.dart
@@ -0,0 +1,237 @@
+import 'package:flutter/material.dart';
+
+class AppTheme {
+ // Unified color scheme matching web client exactly
+ static const Color primaryColor = Color(0xFF006EFF); // $highlight-blue
+ static const Color secondaryColor = Color(0xFF8B5CF6); // --color-secondary
+ static const Color tertiaryColor = Color(0xFF10B981); // --color-accent
+
+ // Web client exact colors
+ static const Color highlightBlue = Color(0xFF006EFF); // $highlight-blue
+ static const Color darkestBlue = Color(0xFF234ECE); // $darkestblue
+ static const Color darkBlue = Color(0xFF055EE2); // $darkblue
+
+ // Apple human design guideline colors (exact match)
+ static const Color black = Color(0xFF181A1C); // $black
+ static const Color white = Color(0xFFFFFFDE); // $white (with alpha)
+ static const Color gray = Color(0xFF1A1919); // $gray
+ static const Color gray1 = Color(0xFF8E8E93); // $gray1
+ static const Color gray2 = Color(0xFF636366); // $gray2
+ static const Color gray3 = Color(0xFF48484A); // $gray3
+ static const Color gray4 = Color(0xFF3A3A3C); // $gray4
+ static const Color gray5 = Color(0xFF2C2C2E); // $gray5
+ static const Color body = Color(0xFF000000); // $body
+
+ // Semantic colors (exact match)
+ static const Color red = Color(0xFFF7635C); // $red
+ static const Color blue = Color(0xFF0A84FF); // $blue
+ static const Color green = Color(0xFF5EF784); // $green
+ static const Color yellow = Color(0xFFFFD60A); // $yellow
+ static const Color orange = Color(0xFFFF9F0A); // $orange
+ static const Color pink = Color(0xFFFF375F); // $pink
+ static const Color purple = Color(0xFFBF5AF2); // $purple
+ static const Color brown = Color(0xFFAC8E68); // $brown
+ static const Color indigo = Color(0xFF5E5CE6); // $indigo
+ static const Color teal = Color(0xFF40C8E0); // $teal
+ static const Color lightBrown = Color(0xFFEBCA89); // $lightbrown
+
+ static const Color surfaceColor = Color(0xFFFAFAFA); // --color-surface
+ static const Color surfaceVariantColor = Color(0xFFF5F5F5); // --color-surface-variant
+ static const Color backgroundColor = Color(0xFFFFFFFF); // --color-background
+
+ static const Color onPrimaryColor = Color(0xFFFFFFFF); // --color-on-primary
+ static const Color onSecondaryColor = Color(0xFFFFFFFF); // --color-on-secondary
+ static const Color onTertiaryColor = Color(0xFFFFFFFF); // --color-on-accent
+ static const Color onSurfaceColor = Color(0xFF1C1C1C); // --color-on-surface
+ static const Color onBackgroundColor = Color(0xFF1C1C1C); // --color-on-background
+
+ static const Color outlineColor = Color(0xFFE5E7EB); // --color-border
+ static const Color outlineVariantColor = Color(0xFFF3F4F6); // --color-divider
+
+ // Status colors
+ static const Color successColor = Color(0xFF10B981);
+ static const Color warningColor = Color(0xFFF59E0B);
+ static const Color errorColor = Color(0xFFEF4444);
+ static const Color infoColor = Color(0xFF3B82F6);
+
+ static ThemeData lightTheme = ThemeData(
+ useMaterial3: true,
+ // Exact font family matching web client with fallbacks
+ fontFamily: 'SF Compact Display',
+ colorScheme: const ColorScheme.light(
+ primary: primaryColor,
+ secondary: secondaryColor,
+ tertiary: tertiaryColor,
+ surface: surfaceColor,
+ surfaceVariant: surfaceVariantColor,
+ background: backgroundColor,
+ onPrimary: onPrimaryColor,
+ onSecondary: onSecondaryColor,
+ onTertiary: onTertiaryColor,
+ onSurface: onSurfaceColor,
+ onBackground: onBackgroundColor,
+ outline: outlineColor,
+ outlineVariant: outlineVariantColor,
+ ),
+ // Consistent transitions matching web client
+ pageTransitionsTheme: const PageTransitionsTheme(
+ builders: {
+ TargetPlatform.android: FadeUpwardsPageTransitionsBuilder(),
+ TargetPlatform.iOS: CupertinoPageTransitionsBuilder(),
+ TargetPlatform.linux: FadeUpwardsPageTransitionsBuilder(),
+ TargetPlatform.macOS: CupertinoPageTransitionsBuilder(),
+ TargetPlatform.windows: FadeUpwardsPageTransitionsBuilder(),
+ },
+ ),
+ appBarTheme: const AppBarTheme(
+ centerTitle: true,
+ elevation: 0,
+ backgroundColor: Colors.transparent,
+ foregroundColor: onSurfaceColor,
+ ),
+ cardTheme: CardThemeData(
+ elevation: 0, // Match web client flat design
+ shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(16)),
+ ),
+ elevatedButtonTheme: ElevatedButtonThemeData(
+ style: ElevatedButton.styleFrom(
+ shape: RoundedRectangleBorder(
+ borderRadius: BorderRadius.circular(8), // Match web client rounded-sm ($small)
+ ),
+ padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 12), // Consistent padding
+ elevation: 0, // Match web client flat design
+ backgroundColor: primaryColor,
+ foregroundColor: onPrimaryColor,
+ textStyle: const TextStyle(
+ fontFamily: 'SF Compact Display',
+ fontWeight: FontWeight.w700, // Match web client font-weight
+ fontSize: 14, // Match web client font-size (0.9rem)
+ ),
+ ),
+ ),
+ textTheme: const TextTheme(
+ headlineLarge: TextStyle(
+ fontSize: 36, // Match web client larger headings
+ fontWeight: FontWeight.w700, // Match web client font-weight
+ letterSpacing: 0,
+ height: 1.2,
+ ),
+ headlineMedium: TextStyle(
+ fontSize: 28,
+ fontWeight: FontWeight.w700, // Match web client font-weight
+ letterSpacing: 0,
+ height: 1.2,
+ ),
+ headlineSmall: TextStyle(
+ fontSize: 24,
+ fontWeight: FontWeight.w700, // Match web client font-weight
+ letterSpacing: 0,
+ height: 1.2,
+ ),
+ titleLarge: TextStyle(
+ fontSize: 20, // Match web client title size
+ fontWeight: FontWeight.w700, // Match web client font-weight
+ letterSpacing: 0,
+ height: 1.3,
+ ),
+ titleMedium: TextStyle(
+ fontSize: 16,
+ fontWeight: FontWeight.w500, // Match web client font-weight
+ letterSpacing: 0.15,
+ height: 1.3,
+ ),
+ titleSmall: TextStyle(
+ fontSize: 14,
+ fontWeight: FontWeight.w700, // Match web client font-weight
+ letterSpacing: 0.1,
+ height: 1.3,
+ ),
+ bodyLarge: TextStyle(
+ fontSize: 16,
+ fontWeight: FontWeight.w400, // Match web client font-weight
+ letterSpacing: 0.5,
+ height: 1.4,
+ ),
+ bodyMedium: TextStyle(
+ fontSize: 14,
+ fontWeight: FontWeight.w400, // Match web client font-weight
+ letterSpacing: 0.25,
+ height: 1.4,
+ ),
+ bodySmall: TextStyle(
+ fontSize: 12,
+ fontWeight: FontWeight.w400, // Match web client font-weight
+ letterSpacing: 0.4,
+ height: 1.4,
+ ),
+ labelLarge: TextStyle(
+ fontSize: 14,
+ fontWeight: FontWeight.w700, // Match web client font-weight
+ letterSpacing: 0.1,
+ height: 1.2,
+ ),
+ labelMedium: TextStyle(
+ fontSize: 12,
+ fontWeight: FontWeight.w700, // Match web client font-weight
+ letterSpacing: 0.5,
+ height: 1.2,
+ ),
+ labelSmall: TextStyle(
+ fontSize: 11,
+ fontWeight: FontWeight.w700, // Match web client font-weight
+ letterSpacing: 0.5,
+ height: 1.2,
+ ),
+ ),
+ );
+
+ static ThemeData darkTheme = ThemeData(
+ useMaterial3: true,
+ // Exact font family matching web client with fallbacks
+ fontFamily: 'SF Compact Display',
+ colorScheme: const ColorScheme.dark(
+ primary: Color(0xFF4A90E2), // Lighter version of $highlight-blue for dark mode
+ secondary: Color(0xFFA78BFA), // Lighter secondary for dark mode
+ tertiary: Color(0xFF34D399), // Lighter accent for dark mode
+ surface: gray4, // Match web client $gray4 exactly
+ surfaceVariant: gray5, // Match web client $gray5 exactly
+ background: body, // Match web client $body exactly
+ onPrimary: Color(0xFF1C1C1C), // Dark text on light primary
+ onSecondary: Color(0xFF1C1C1C), // Dark text on light secondary
+ onTertiary: Color(0xFF1C1C1C), // Dark text on light accent
+ onSurface: white, // Match web client $white
+ onBackground: white, // Match web client $white
+ outline: gray3, // Match web client $gray4
+ outlineVariant: gray4, // Match web client $gray5
+ ),
+ appBarTheme: const AppBarTheme(
+ centerTitle: true,
+ elevation: 0,
+ backgroundColor: Colors.transparent,
+ foregroundColor: white,
+ ),
+ cardTheme: CardThemeData(
+ elevation: 0, // Match web client flat design
+ color: gray4, // Match web client card background
+ shape: RoundedRectangleBorder(
+ borderRadius: BorderRadius.circular(16),
+ ),
+ ),
+ elevatedButtonTheme: ElevatedButtonThemeData(
+ style: ElevatedButton.styleFrom(
+ shape: RoundedRectangleBorder(
+ borderRadius: BorderRadius.circular(8), // Match web client rounded-sm ($small)
+ ),
+ padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 12), // Consistent padding
+ elevation: 0, // Match web client flat design
+ backgroundColor: const Color(0xFF4A90E2), // Updated primary color for dark mode
+ foregroundColor: const Color(0xFF1C1C1C), // Dark text on light primary
+ textStyle: const TextStyle(
+ fontFamily: 'SF Compact Display',
+ fontWeight: FontWeight.w700, // Match web client font-weight
+ fontSize: 14, // Match web client font-size (0.9rem)
+ ),
+ ),
+ ),
+ );
+}
diff --git a/swingmusic_mobile/lib/core/widgets/album_card.dart b/swingmusic_mobile/lib/core/widgets/album_card.dart
new file mode 100644
index 00000000..b4351947
--- /dev/null
+++ b/swingmusic_mobile/lib/core/widgets/album_card.dart
@@ -0,0 +1,201 @@
+import 'package:flutter/material.dart';
+import '../../data/models/album_model.dart';
+import '../../core/constants/app_spacing.dart';
+import '../../core/themes/app_theme.dart';
+
+class AlbumCard extends StatefulWidget {
+ final AlbumModel album;
+ final VoidCallback? onTap;
+ final double? width;
+ final double? height;
+
+ const AlbumCard({
+ super.key,
+ required this.album,
+ this.onTap,
+ this.width,
+ this.height,
+ });
+
+ @override
+ State createState() => _AlbumCardState();
+}
+
+class _AlbumCardState extends State {
+ bool _isHovered = false;
+
+ @override
+ Widget build(BuildContext context) {
+ return MouseRegion(
+ onEnter: (_) => setState(() => _isHovered = true),
+ onExit: (_) => setState(() => _isHovered = false),
+ child: Card(
+ clipBehavior: Clip.antiAlias,
+ elevation: 0,
+ shape: RoundedRectangleBorder(
+ borderRadius: AppBorderRadius.circularLG,
+ ),
+ color: _isHovered ? AppTheme.gray5 : null, // Match web client hover background
+ child: InkWell(
+ onTap: onTap,
+ borderRadius: AppBorderRadius.circularLG,
+ child: Container(
+ width: width ?? 160,
+ child: Column(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ // Album Art
+ Expanded(
+ child: Container(
+ width: double.infinity,
+ decoration: BoxDecoration(
+ color: Theme.of(context).colorScheme.surfaceVariant,
+ borderRadius: AppBorderRadius.circularLG,
+ ),
+ child: ClipRRect(
+ borderRadius: AppBorderRadius.circularLG,
+ child: Stack(
+ children: [
+ if (album.image.isNotEmpty)
+ Image.network(
+ album.image,
+ fit: BoxFit.cover,
+ width: double.infinity,
+ height: double.infinity,
+ errorBuilder: (context, error, stackTrace) {
+ return _buildDefaultAlbumArt(context);
+ },
+ )
+ else
+ _buildDefaultAlbumArt(context),
+ // Gradient overlay matching web client
+ Positioned.fill(
+ child: AnimatedOpacity(
+ opacity: _isHovered ? 1.0 : 0.0,
+ duration: AppSpacing.transitionNormal, // 0.25s ease from web client
+ child: DecoratedBox(
+ decoration: BoxDecoration(
+ gradient: LinearGradient(
+ begin: Alignment.bottomCenter,
+ end: Alignment.topCenter,
+ colors: [
+ Colors.black.withValues(alpha: 0.6),
+ Colors.transparent,
+ ],
+ stops: const [0.0, 0.8],
+ ),
+ ),
+ ),
+ ),
+ ),
+ // Play button overlay matching web client PlayBtn.vue exactly
+ Positioned(
+ bottom: 12,
+ right: 12,
+ child: AnimatedContainer(
+ duration: AppSpacing.transitionNormal,
+ transform: Matrix4.translationValues(
+ 0,
+ _isHovered ? 0 : 16, // translateY(1rem) = 16px
+ 0,
+ ),
+ child: AnimatedOpacity(
+ opacity: _isHovered ? 1.0 : 0.0,
+ duration: AppSpacing.transitionNormal,
+ child: Container(
+ width: 40, // 2.5rem = 40px
+ height: 40,
+ decoration: BoxDecoration(
+ color: AppTheme.darkBlue, // $darkblue exact match
+ shape: BoxShape.circle,
+ boxShadow: [
+ // Match web client shadow effects
+ BoxShadow(
+ color: Colors.black.withValues(alpha: 0.3),
+ blurRadius: 8,
+ offset: const Offset(0, 2),
+ ),
+ ],
+ ),
+ child: Icon(
+ Icons.play_arrow,
+ color: AppTheme.onPrimaryColor,
+ size: 28, // 1.75rem = 28px
+ ),
+ ),
+ ),
+ ),
+ ),
+ ],
+ ),
+ ),
+ ),
+ ),
+
+ // Album Info
+ Padding(
+ padding: const EdgeInsets.all(12.0),
+ child: Column(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ Text(
+ album.displayTitle,
+ style: Theme.of(context).textTheme.bodyMedium?.copyWith(
+ fontWeight: FontWeight.w700,
+ fontSize: 15, // 0.95rem from web client
+ ),
+ maxLines: 2,
+ overflow: TextOverflow.ellipsis,
+ ),
+ const SizedBox(height: 4),
+ Text(
+ album.artistNames,
+ style: Theme.of(context).textTheme.bodySmall?.copyWith(
+ color: Theme.of(context).colorScheme.onSurface.withValues(alpha: 0.75),
+ fontWeight: FontWeight.w700,
+ fontSize: 13, // 0.8rem from web client
+ ),
+ maxLines: 1,
+ overflow: TextOverflow.ellipsis,
+ ),
+ if (album.year.isNotEmpty) ...[
+ const SizedBox(height: 2),
+ Text(
+ album.year,
+ style: Theme.of(context).textTheme.bodySmall?.copyWith(
+ color: Theme.of(context).colorScheme.onSurface.withValues(alpha: 0.6),
+ fontSize: 12,
+ ),
+ ),
+ ],
+ ],
+ ),
+ ),
+ ],
+ ),
+ ),
+ ),
+ ),
+ );
+ }
+
+ Widget _buildDefaultAlbumArt(BuildContext context) {
+ return Container(
+ decoration: BoxDecoration(
+ gradient: LinearGradient(
+ begin: Alignment.topLeft,
+ end: Alignment.bottomRight,
+ colors: [
+ Theme.of(context).colorScheme.primary.withOpacity(0.7),
+ Theme.of(context).colorScheme.secondary.withOpacity(0.7),
+ ],
+ ),
+ ),
+ child: Icon(
+ Icons.album,
+ size: 48,
+ color: Theme.of(context).colorScheme.onPrimary,
+ ),
+ );
+ }
+}
diff --git a/swingmusic_mobile/lib/core/widgets/mini_player.dart b/swingmusic_mobile/lib/core/widgets/mini_player.dart
new file mode 100644
index 00000000..6be5fd5a
--- /dev/null
+++ b/swingmusic_mobile/lib/core/widgets/mini_player.dart
@@ -0,0 +1,169 @@
+import 'package:flutter/material.dart';
+import 'package:provider/provider.dart';
+import '../../shared/providers/audio_provider.dart';
+
+class MiniPlayer extends StatelessWidget {
+ const MiniPlayer({super.key});
+
+ @override
+ Widget build(BuildContext context) {
+ return Consumer(
+ builder: (context, audioProvider, child) {
+ final currentTrack = audioProvider.currentTrack;
+
+ if (currentTrack == null) {
+ return const SizedBox.shrink();
+ }
+
+ return Container(
+ height: 80,
+ decoration: BoxDecoration(
+ color: Theme.of(context).colorScheme.surface,
+ boxShadow: [
+ BoxShadow(
+ color: Colors.black.withOpacity(0.1),
+ blurRadius: 8,
+ offset: const Offset(0, -2),
+ ),
+ ],
+ ),
+ child: InkWell(
+ onTap: () {
+ // Navigate to full player
+ Navigator.pushNamed(context, '/player');
+ },
+ child: Padding(
+ padding: const EdgeInsets.symmetric(horizontal: 16.0, vertical: 8.0),
+ child: Row(
+ children: [
+ // Album Art
+ ClipRRect(
+ borderRadius: BorderRadius.circular(4),
+ child: Container(
+ width: 56,
+ height: 56,
+ decoration: BoxDecoration(
+ color: Theme.of(context).colorScheme.surfaceVariant,
+ ),
+ child: currentTrack.image.isNotEmpty
+ ? Image.network(
+ currentTrack.image,
+ fit: BoxFit.cover,
+ errorBuilder: (context, error, stackTrace) {
+ return _buildDefaultArt(context);
+ },
+ )
+ : _buildDefaultArt(context),
+ ),
+ ),
+
+ const SizedBox(width: 12),
+
+ // Track Info
+ Expanded(
+ child: Column(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ mainAxisAlignment: MainAxisAlignment.center,
+ children: [
+ Text(
+ currentTrack.displayTitle,
+ style: Theme.of(context).textTheme.bodyMedium?.copyWith(
+ fontWeight: FontWeight.w500,
+ ),
+ maxLines: 1,
+ overflow: TextOverflow.ellipsis,
+ ),
+ const SizedBox(height: 2),
+ Text(
+ currentTrack.artistNames,
+ style: Theme.of(context).textTheme.bodySmall?.copyWith(
+ color: Theme.of(context).colorScheme.onSurfaceVariant,
+ ),
+ maxLines: 1,
+ overflow: TextOverflow.ellipsis,
+ ),
+ ],
+ ),
+ ),
+
+ // Progress Indicator
+ if (audioProvider.duration.inMilliseconds > 0)
+ SizedBox(
+ width: 40,
+ child: Column(
+ mainAxisAlignment: MainAxisAlignment.center,
+ children: [
+ Text(
+ '${audioProvider.positionFormatted} / ${audioProvider.durationFormatted}',
+ style: Theme.of(context).textTheme.bodySmall?.copyWith(
+ fontSize: 10,
+ ),
+ ),
+ const SizedBox(height: 4),
+ LinearProgressIndicator(
+ value: audioProvider.progress,
+ backgroundColor: Theme.of(context).colorScheme.surfaceVariant,
+ valueColor: AlwaysStoppedAnimation(
+ Theme.of(context).colorScheme.primary,
+ ),
+ ),
+ ],
+ ),
+ ),
+
+ const SizedBox(width: 8),
+
+ // Play/Pause Button
+ IconButton(
+ onPressed: () {
+ if (audioProvider.isPlaying) {
+ audioProvider.pause();
+ } else {
+ audioProvider.play();
+ }
+ },
+ icon: audioProvider.isLoading
+ ? SizedBox(
+ width: 20,
+ height: 20,
+ child: CircularProgressIndicator(
+ strokeWidth: 2,
+ valueColor: AlwaysStoppedAnimation(
+ Theme.of(context).colorScheme.primary,
+ ),
+ ),
+ )
+ : Icon(
+ audioProvider.isPlaying ? Icons.pause : Icons.play_arrow,
+ color: Theme.of(context).colorScheme.primary,
+ ),
+ ),
+ ],
+ ),
+ ),
+ ),
+ );
+ },
+ );
+ }
+
+ Widget _buildDefaultArt(BuildContext context) {
+ return Container(
+ decoration: BoxDecoration(
+ gradient: LinearGradient(
+ begin: Alignment.topLeft,
+ end: Alignment.bottomRight,
+ colors: [
+ Theme.of(context).colorScheme.primary.withOpacity(0.7),
+ Theme.of(context).colorScheme.secondary.withOpacity(0.7),
+ ],
+ ),
+ ),
+ child: Icon(
+ Icons.music_note,
+ size: 24,
+ color: Theme.of(context).colorScheme.onPrimary,
+ ),
+ );
+ }
+}
diff --git a/swingmusic_mobile/lib/core/widgets/track_list_tile.dart b/swingmusic_mobile/lib/core/widgets/track_list_tile.dart
new file mode 100644
index 00000000..0a6fbb28
--- /dev/null
+++ b/swingmusic_mobile/lib/core/widgets/track_list_tile.dart
@@ -0,0 +1,141 @@
+import 'package:flutter/material.dart';
+import '../../data/models/track_model.dart';
+
+class TrackListTile extends StatelessWidget {
+ final TrackModel track;
+ final VoidCallback? onTap;
+ final VoidCallback? onPlay;
+ final bool isPlaying;
+ final bool showAlbumArt;
+ final Widget? trailing;
+
+ const TrackListTile({
+ super.key,
+ required this.track,
+ this.onTap,
+ this.onPlay,
+ this.isPlaying = false,
+ this.showAlbumArt = true,
+ this.trailing,
+ });
+
+ @override
+ Widget build(BuildContext context) {
+ return ListTile(
+ onTap: onTap,
+ dense: true,
+ leading: showAlbumArt
+ ? ClipRRect(
+ borderRadius: BorderRadius.circular(4),
+ child: Container(
+ width: 48,
+ height: 48,
+ decoration: BoxDecoration(
+ color: Theme.of(context).colorScheme.surfaceVariant,
+ ),
+ child: track.image.isNotEmpty
+ ? Image.network(
+ track.image,
+ fit: BoxFit.cover,
+ errorBuilder: (context, error, stackTrace) {
+ return _buildDefaultArt(context);
+ },
+ )
+ : _buildDefaultArt(context),
+ ),
+ )
+ : SizedBox(
+ width: 24,
+ child: Center(
+ child: isPlaying
+ ? Icon(
+ Icons.equalizer,
+ size: 16,
+ color: Theme.of(context).colorScheme.primary,
+ )
+ : Text(
+ '${track.track}',
+ style: Theme.of(context).textTheme.bodySmall?.copyWith(
+ color: Theme.of(context).colorScheme.onSurfaceVariant,
+ ),
+ ),
+ ),
+ ),
+ title: Text(
+ track.displayTitle,
+ style: TextStyle(
+ fontWeight: isPlaying ? FontWeight.w600 : FontWeight.normal,
+ color: isPlaying
+ ? Theme.of(context).colorScheme.primary
+ : Theme.of(context).colorScheme.onSurface,
+ ),
+ maxLines: 1,
+ overflow: TextOverflow.ellipsis,
+ ),
+ subtitle: Column(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ Text(
+ track.artistNames,
+ style: Theme.of(context).textTheme.bodySmall?.copyWith(
+ color: Theme.of(context).colorScheme.onSurfaceVariant,
+ ),
+ maxLines: 1,
+ overflow: TextOverflow.ellipsis,
+ ),
+ if (track.displayAlbum.isNotEmpty)
+ Text(
+ track.displayAlbum,
+ style: Theme.of(context).textTheme.bodySmall?.copyWith(
+ color: Theme.of(context).colorScheme.onSurfaceVariant,
+ ),
+ maxLines: 1,
+ overflow: TextOverflow.ellipsis,
+ ),
+ ],
+ ),
+ trailing: trailing ??
+ Row(
+ mainAxisSize: MainAxisSize.min,
+ children: [
+ Text(
+ track.durationFormatted,
+ style: Theme.of(context).textTheme.bodySmall?.copyWith(
+ color: Theme.of(context).colorScheme.onSurfaceVariant,
+ ),
+ ),
+ const SizedBox(width: 8),
+ if (onPlay != null)
+ IconButton(
+ icon: Icon(
+ isPlaying ? Icons.pause : Icons.play_arrow,
+ color: Theme.of(context).colorScheme.primary,
+ ),
+ onPressed: onPlay,
+ visualDensity: VisualDensity.compact,
+ ),
+ ],
+ ),
+ );
+ }
+
+ Widget _buildDefaultArt(BuildContext context) {
+ return Container(
+ decoration: BoxDecoration(
+ gradient: LinearGradient(
+ begin: Alignment.topLeft,
+ end: Alignment.bottomRight,
+ colors: [
+ Theme.of(context).colorScheme.primary.withOpacity(0.7),
+ Theme.of(context).colorScheme.secondary.withOpacity(0.7),
+ ],
+ ),
+ ),
+ child: Icon(
+ Icons.music_note,
+ size: 24,
+ color: Theme.of(context).colorScheme.onPrimary,
+ ),
+ );
+ }
+}
diff --git a/swingmusic_mobile/lib/data/models/album_model.dart b/swingmusic_mobile/lib/data/models/album_model.dart
new file mode 100644
index 00000000..cde6d033
--- /dev/null
+++ b/swingmusic_mobile/lib/data/models/album_model.dart
@@ -0,0 +1,236 @@
+import 'package:equatable/equatable.dart';
+import 'track_model.dart';
+
+class AlbumModel extends Equatable {
+ final List albumartists;
+ final String albumhash;
+ final List artisthashes;
+ final String baseTitle;
+ final String color;
+ final int createdDate;
+ final int date;
+ final int duration;
+ final List genres;
+ final List genrehashes;
+ final String originalTitle;
+ final String title;
+ final int trackcount;
+ final int lastplayed;
+ final int playcount;
+ final int playduration;
+ final Map extra;
+ final String pathhash;
+ final int id;
+ final String type;
+ final String image;
+ final double score;
+ final List versions;
+ final List favUserids;
+ final String weakHash;
+ final bool isFavorite;
+
+ const AlbumModel({
+ required this.albumartists,
+ required this.albumhash,
+ required this.artisthashes,
+ required this.baseTitle,
+ this.color = '#6750A4',
+ required this.createdDate,
+ required this.date,
+ required this.duration,
+ required this.genres,
+ required this.genrehashes,
+ this.originalTitle = '',
+ required this.title,
+ required this.trackcount,
+ this.lastplayed = 0,
+ this.playcount = 0,
+ this.playduration = 0,
+ this.extra = const {},
+ this.pathhash = '',
+ this.id = -1,
+ this.type = 'album',
+ this.image = '',
+ this.score = 0.0,
+ this.versions = const [],
+ this.favUserids = const [],
+ this.weakHash = '',
+ this.isFavorite = false,
+ });
+
+ AlbumModel copyWith({
+ List? albumartists,
+ String? albumhash,
+ List? artisthashes,
+ String? baseTitle,
+ String? color,
+ int? createdDate,
+ int? date,
+ int? duration,
+ List? genres,
+ List? genrehashes,
+ String? originalTitle,
+ String? title,
+ int? trackcount,
+ int? lastplayed,
+ int? playcount,
+ int? playduration,
+ Map? extra,
+ String? pathhash,
+ int? id,
+ String? type,
+ String? image,
+ double? score,
+ List? versions,
+ List? favUserids,
+ String? weakHash,
+ bool? isFavorite,
+ }) {
+ return AlbumModel(
+ albumartists: albumartists ?? this.albumartists,
+ albumhash: albumhash ?? this.albumhash,
+ artisthashes: artisthashes ?? this.artisthashes,
+ baseTitle: baseTitle ?? this.baseTitle,
+ color: color ?? this.color,
+ createdDate: createdDate ?? this.createdDate,
+ date: date ?? this.date,
+ duration: duration ?? this.duration,
+ genres: genres ?? this.genres,
+ genrehashes: genrehashes ?? this.genrehashes,
+ originalTitle: originalTitle ?? this.originalTitle,
+ title: title ?? this.title,
+ trackcount: trackcount ?? this.trackcount,
+ lastplayed: lastplayed ?? this.lastplayed,
+ playcount: playcount ?? this.playcount,
+ playduration: playduration ?? this.playduration,
+ extra: extra ?? this.extra,
+ pathhash: pathhash ?? this.pathhash,
+ id: id ?? this.id,
+ type: type ?? this.type,
+ image: image ?? this.image,
+ score: score ?? this.score,
+ versions: versions ?? this.versions,
+ favUserids: favUserids ?? this.favUserids,
+ weakHash: weakHash ?? this.weakHash,
+ isFavorite: isFavorite ?? this.isFavorite,
+ );
+ }
+
+ @override
+ List