login commit linus

This commit is contained in:
Linus Wabwire 2025-05-17 11:13:16 +03:00
commit 95c7d41cb6
163 changed files with 7329 additions and 0 deletions

45
.gitignore vendored Normal file
View File

@ -0,0 +1,45 @@
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.build/
.buildlog/
.history
.svn/
.swiftpm/
migrate_working_dir/
# IntelliJ related
*.iml
*.ipr
*.iws
.idea/
# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/
# Flutter/Dart/Pub related
**/doc/api/
**/ios/Flutter/.last_build_id
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.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

45
.metadata Normal file
View File

@ -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: "ea121f8859e4b13e47a8f845e4586164519588bc"
channel: "stable"
project_type: app
# Tracks metadata for the flutter migrate command
migration:
platforms:
- platform: root
create_revision: ea121f8859e4b13e47a8f845e4586164519588bc
base_revision: ea121f8859e4b13e47a8f845e4586164519588bc
- platform: android
create_revision: ea121f8859e4b13e47a8f845e4586164519588bc
base_revision: ea121f8859e4b13e47a8f845e4586164519588bc
- platform: ios
create_revision: ea121f8859e4b13e47a8f845e4586164519588bc
base_revision: ea121f8859e4b13e47a8f845e4586164519588bc
- platform: linux
create_revision: ea121f8859e4b13e47a8f845e4586164519588bc
base_revision: ea121f8859e4b13e47a8f845e4586164519588bc
- platform: macos
create_revision: ea121f8859e4b13e47a8f845e4586164519588bc
base_revision: ea121f8859e4b13e47a8f845e4586164519588bc
- platform: web
create_revision: ea121f8859e4b13e47a8f845e4586164519588bc
base_revision: ea121f8859e4b13e47a8f845e4586164519588bc
- platform: windows
create_revision: ea121f8859e4b13e47a8f845e4586164519588bc
base_revision: ea121f8859e4b13e47a8f845e4586164519588bc
# 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'

16
README.md Normal file
View File

@ -0,0 +1,16 @@
# login_app
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.

28
analysis_options.yaml Normal file
View File

@ -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

14
android/.gitignore vendored Normal file
View File

@ -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

View File

@ -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.example.login_app"
compileSdk = flutter.compileSdkVersion
ndkVersion = flutter.ndkVersion
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId = "com.example.login_app"
// 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 = "../.."
}

View File

@ -0,0 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- The INTERNET permission is required for development. Specifically,
the Flutter tool needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>

View File

@ -0,0 +1,45 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:label="login_app"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:taskAffinity=""
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user
while the Flutter UI initializes. After that, this theme continues
to determine the Window background behind the Flutter UI. -->
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
<meta-data
android:name="flutterEmbedding"
android:value="2" />
</application>
<!-- Required to query activities that can process text, see:
https://developer.android.com/training/package-visibility and
https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.
In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
<queries>
<intent>
<action android:name="android.intent.action.PROCESS_TEXT"/>
<data android:mimeType="text/plain"/>
</intent>
</queries>
</manifest>

View File

@ -0,0 +1,5 @@
package com.example.login_app
import io.flutter.embedding.android.FlutterActivity
class MainActivity : FlutterActivity()

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="?android:colorBackground" />
<!-- You can insert your own image assets here -->
<!-- <item>
<bitmap
android:gravity="center"
android:src="@mipmap/launch_image" />
</item> -->
</layer-list>

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@android:color/white" />
<!-- You can insert your own image assets here -->
<!-- <item>
<bitmap
android:gravity="center"
android:src="@mipmap/launch_image" />
</item> -->
</layer-list>

Binary file not shown.

After

Width:  |  Height:  |  Size: 544 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 442 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 721 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
the Flutter engine draws its first frame -->
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
<!-- Theme applied to the Android Window as soon as the process has started.
This theme determines the color of the Android Window while your
Flutter UI initializes, as well as behind your Flutter UI while its
running.
This Theme is only used starting with V2 of Flutter's Android embedding. -->
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
<item name="android:windowBackground">?android:colorBackground</item>
</style>
</resources>

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
the Flutter engine draws its first frame -->
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
<!-- Theme applied to the Android Window as soon as the process has started.
This theme determines the color of the Android Window while your
Flutter UI initializes, as well as behind your Flutter UI while its
running.
This Theme is only used starting with V2 of Flutter's Android embedding. -->
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
<item name="android:windowBackground">?android:colorBackground</item>
</style>
</resources>

View File

@ -0,0 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- The INTERNET permission is required for development. Specifically,
the Flutter tool needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>

21
android/build.gradle.kts Normal file
View File

@ -0,0 +1,21 @@
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<Delete>("clean") {
delete(rootProject.layout.buildDirectory)
}

View File

@ -0,0 +1,3 @@
org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError
android.useAndroidX=true
android.enableJetifier=true

View File

@ -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.10.2-all.zip

View File

@ -0,0 +1,25 @@
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.7.0" apply false
id("org.jetbrains.kotlin.android") version "1.8.22" apply false
}
include(":app")

BIN
assets/images/logo.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
assets/images/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

BIN
assets/images/shop10.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 KiB

BIN
assets/images/shop11.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

BIN
assets/images/shop12.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

BIN
assets/images/shop13.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

BIN
assets/images/shop14.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

BIN
assets/images/shop15.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

BIN
assets/images/shop16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

BIN
assets/images/shop17.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

BIN
assets/images/shop2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

BIN
assets/images/shop3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

BIN
assets/images/shop4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

BIN
assets/images/shop5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 171 KiB

BIN
assets/images/shop6.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

BIN
assets/images/shop7.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

BIN
assets/images/shop8.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

BIN
assets/images/shop9.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

34
ios/.gitignore vendored Normal file
View File

@ -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

View File

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>App</string>
<key>CFBundleIdentifier</key>
<string>io.flutter.flutter.app</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>App</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>12.0</string>
</dict>
</plist>

View File

@ -0,0 +1 @@
#include "Generated.xcconfig"

View File

@ -0,0 +1 @@
#include "Generated.xcconfig"

View File

@ -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 = "<group>"; };
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
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 = "<group>"; };
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
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 = "<group>"; };
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
/* 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 = "<group>";
};
9740EEB11CF90186004384FC /* Flutter */ = {
isa = PBXGroup;
children = (
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
9740EEB21CF90195004384FC /* Debug.xcconfig */,
7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
9740EEB31CF90195004384FC /* Generated.xcconfig */,
);
name = Flutter;
sourceTree = "<group>";
};
97C146E51CF9000F007C117D = {
isa = PBXGroup;
children = (
9740EEB11CF90186004384FC /* Flutter */,
97C146F01CF9000F007C117D /* Runner */,
97C146EF1CF9000F007C117D /* Products */,
331C8082294A63A400263BE5 /* RunnerTests */,
);
sourceTree = "<group>";
};
97C146EF1CF9000F007C117D /* Products */ = {
isa = PBXGroup;
children = (
97C146EE1CF9000F007C117D /* Runner.app */,
331C8081294A63A400263BE5 /* RunnerTests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
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 = "<group>";
};
/* 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 = "<group>";
};
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
isa = PBXVariantGroup;
children = (
97C147001CF9000F007C117D /* Base */,
);
name = LaunchScreen.storyboard;
sourceTree = "<group>";
};
/* 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 = 12.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.example.loginApp;
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.example.loginApp.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.example.loginApp.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.example.loginApp.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 = 12.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 = 12.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.example.loginApp;
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.example.loginApp;
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 */;
}

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "self:">
</FileRef>
</Workspace>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PreviewsEnabled</key>
<false/>
</dict>
</plist>

View File

@ -0,0 +1,99 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1510"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</MacroExpansion>
<Testables>
<TestableReference
skipped = "NO"
parallelizable = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "331C8080294A63A400263BE5"
BuildableName = "RunnerTests.xctest"
BlueprintName = "RunnerTests"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
enableGPUValidationMode = "1"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</LaunchAction>
<ProfileAction
buildConfiguration = "Profile"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "group:Runner.xcodeproj">
</FileRef>
</Workspace>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PreviewsEnabled</key>
<false/>
</dict>
</plist>

View File

@ -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)
}
}

View File

@ -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"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 295 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 406 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 450 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 282 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 462 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 704 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 406 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 586 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 862 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 862 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 762 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -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"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 B

View File

@ -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.

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="12121" systemVersion="16G29" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="12089"/>
</dependencies>
<scenes>
<!--View Controller-->
<scene sceneID="EHf-IW-A2E">
<objects>
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
<layoutGuides>
<viewControllerLayoutGuide type="top" id="Ydg-fD-yQy"/>
<viewControllerLayoutGuide type="bottom" id="xbc-2k-c8Z"/>
</layoutGuides>
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" image="LaunchImage" translatesAutoresizingMaskIntoConstraints="NO" id="YRO-k0-Ey4">
</imageView>
</subviews>
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
<constraint firstItem="YRO-k0-Ey4" firstAttribute="centerX" secondItem="Ze5-6b-2t3" secondAttribute="centerX" id="1a2-6s-vTC"/>
<constraint firstItem="YRO-k0-Ey4" firstAttribute="centerY" secondItem="Ze5-6b-2t3" secondAttribute="centerY" id="4X2-HB-R7a"/>
</constraints>
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
</objects>
<point key="canvasLocation" x="53" y="375"/>
</scene>
</scenes>
<resources>
<image name="LaunchImage" width="168" height="185"/>
</resources>
</document>

View File

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="10117" systemVersion="15F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="BYZ-38-t0r">
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="10085"/>
</dependencies>
<scenes>
<!--Flutter View Controller-->
<scene sceneID="tne-QT-ifu">
<objects>
<viewController id="BYZ-38-t0r" customClass="FlutterViewController" sceneMemberID="viewController">
<layoutGuides>
<viewControllerLayoutGuide type="top" id="y3c-jy-aDJ"/>
<viewControllerLayoutGuide type="bottom" id="wfy-db-euE"/>
</layoutGuides>
<view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
<rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
</objects>
</scene>
</scenes>
</document>

49
ios/Runner/Info.plist Normal file
View File

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>Login App</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>login_app</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>$(FLUTTER_BUILD_NAME)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(FLUTTER_BUILD_NUMBER)</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>CADisableMinimumFrameDurationOnPhone</key>
<true/>
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>
</dict>
</plist>

View File

@ -0,0 +1 @@
#import "GeneratedPluginRegistrant.h"

View File

@ -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.
}
}

262
lib/cart_page.dart Normal file
View File

@ -0,0 +1,262 @@
import 'package:flutter/material.dart';
import 'services/cart_service.dart';
import 'models/cart_item_model.dart';
import 'widgets/empty_state_widget.dart';
class CartPage extends StatefulWidget {
const CartPage({super.key});
@override
State<CartPage> createState() => _CartPageState();
}
class _CartPageState extends State<CartPage> {
final CartService _cartService = CartService();
@override
void initState() {
super.initState();
_cartService.addListener(_onCartChanged);
}
@override
void dispose() {
_cartService.removeListener(_onCartChanged);
super.dispose();
}
void _onCartChanged() {
if (mounted) {
setState(() {});
}
}
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
final cartItems = _cartService.items;
return Scaffold(
appBar: AppBar(
title: const Text('Your Cart'),
centerTitle: true,
actions: [
if (cartItems.isNotEmpty)
IconButton(
icon: const Icon(Icons.delete_sweep_outlined),
tooltip: 'Clear Cart',
onPressed: () {
showDialog(
context: context,
builder: (ctx) => AlertDialog(
title: const Text('Clear Cart?'),
content: const Text('Are you sure you want to remove all items from your cart?'),
actions: [
TextButton(
child: const Text('Cancel'),
onPressed: () => Navigator.of(ctx).pop(),
),
TextButton(
child: Text('Clear', style: TextStyle(color: theme.colorScheme.error)),
onPressed: () {
_cartService.clearCart();
Navigator.of(ctx).pop();
},
),
],
),
);
},
),
],
),
body: cartItems.isEmpty
? EmptyStateWidget(
icon: Icons.shopping_cart_outlined,
message: 'Your cart is empty.',
actionButtonText: 'Start Shopping',
onActionButtonPressed: () {
// Navigate to home, clear stack if needed
Navigator.pushNamedAndRemoveUntil(context, '/home', (route) => false);
},
)
: Column(
children: [
Expanded(
child: ListView.builder(
padding: const EdgeInsets.all(8.0),
itemCount: cartItems.length,
itemBuilder: (context, index) {
final item = cartItems[index];
return _buildCartItemTile(context, item);
},
),
),
_buildCartSummary(context, theme),
],
),
);
}
Widget _buildCartItemTile(BuildContext context, CartItem item) {
final theme = Theme.of(context);
return Card(
margin: const EdgeInsets.symmetric(vertical: 8.0, horizontal: 8.0),
child: Padding(
padding: const EdgeInsets.all(12.0),
child: Row(
children: [
SizedBox(
width: 80,
height: 80,
child: ClipRRect(
borderRadius: BorderRadius.circular(8.0),
child: Image.network(
item.product.imageUrl,
fit: BoxFit.cover,
errorBuilder: (ctx, err, st) => Icon(Icons.image_not_supported, size: 40, color: theme.colorScheme.outline),
),
),
),
const SizedBox(width: 16),
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(item.product.name, style: theme.textTheme.titleMedium, maxLines: 1, overflow: TextOverflow.ellipsis),
const SizedBox(height: 4),
Text('\$${item.product.price.toStringAsFixed(2)}', style: theme.textTheme.bodyMedium?.copyWith(color: theme.colorScheme.primary)),
const SizedBox(height: 8),
_buildQuantityControls(context, item),
],
),
),
const SizedBox(width: 16),
Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.end,
children: [
Text(
'\$${item.subtotal.toStringAsFixed(2)}',
style: theme.textTheme.titleMedium?.copyWith(fontWeight: FontWeight.bold),
),
const SizedBox(height: 10),
IconButton(
icon: Icon(Icons.delete_outline, color: theme.colorScheme.error),
tooltip: 'Remove All Units',
onPressed: () => _cartService.removeAllOfProduct(item.product.id),
padding: EdgeInsets.zero,
constraints: const BoxConstraints(),
),
],
),
],
),
),
);
}
Widget _buildQuantityControls(BuildContext context, CartItem item) {
final theme = Theme.of(context);
return Row(
mainAxisSize: MainAxisSize.min,
children: [
IconButton(
icon: Icon(Icons.remove_circle_outline, color: theme.colorScheme.primary),
onPressed: () => _cartService.removeItem(item.product.id),
iconSize: 22,
padding: const EdgeInsets.symmetric(horizontal: 4),
constraints: const BoxConstraints(),
),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 8.0),
child: Text('${item.quantity}', style: theme.textTheme.bodyLarge?.copyWith(fontWeight: FontWeight.w500)),
),
IconButton(
icon: Icon(Icons.add_circle_outline, color: theme.colorScheme.primary),
onPressed: () => _cartService.addItem(item.product),
iconSize: 22,
padding: const EdgeInsets.symmetric(horizontal: 4),
constraints: const BoxConstraints(),
),
],
);
}
Widget _buildCartSummary(BuildContext context, ThemeData theme) {
if (_cartService.items.isEmpty) return const SizedBox.shrink();
return Container(
padding: const EdgeInsets.all(16.0).copyWith(bottom: MediaQuery.of(context).padding.bottom + 16.0), // Safe area for bottom
decoration: BoxDecoration(
color: theme.cardColor,
boxShadow: [
BoxShadow(
color: Colors.black.withOpacity(0.1),
spreadRadius: 0,
blurRadius: 10,
offset: const Offset(0, -5),
),
],
borderRadius: const BorderRadius.only(
topLeft: Radius.circular(16),
topRight: Radius.circular(16),
)
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
mainAxisSize: MainAxisSize.min,
children: [
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text('Subtotal (${_cartService.itemCount} items):', style: theme.textTheme.titleMedium),
Text('\$${_cartService.totalPrice.toStringAsFixed(2)}', style: theme.textTheme.titleLarge?.copyWith(fontWeight: FontWeight.bold)),
],
),
const SizedBox(height: 8),
// Mock Tax and Shipping
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text('Est. Tax:', style: theme.textTheme.bodyMedium),
Text('\$${(_cartService.totalPrice * 0.07).toStringAsFixed(2)}', style: theme.textTheme.bodyMedium), // Mock 7% tax
],
),
const SizedBox(height: 4),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text('Shipping:', style: theme.textTheme.bodyMedium),
Text(_cartService.totalPrice > 50 ? 'FREE' : '\$5.00', style: theme.textTheme.bodyMedium?.copyWith(color: _cartService.totalPrice > 50 ? theme.colorScheme.primary : null)), // Mock free shipping over $50
],
),
const Divider(height: 16),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text('Total:', style: theme.textTheme.headlineSmall?.copyWith(fontWeight: FontWeight.bold)),
Text(
'\$${(_cartService.totalPrice + (_cartService.totalPrice * 0.07) + (_cartService.totalPrice > 50 ? 0 : 5.00)).toStringAsFixed(2)}',
style: theme.textTheme.headlineSmall?.copyWith(color: theme.colorScheme.primary, fontWeight: FontWeight.bold)
),
],
),
const SizedBox(height: 20),
ElevatedButton(
onPressed: () {
Navigator.pushNamed(context, '/checkout');
},
child: const Text('Proceed to Checkout'),
),
const SizedBox(height: 8),
TextButton(
onPressed: () {
Navigator.pop(context); // Go back
},
child: const Text('Continue Shopping'),
),
],
),
);
}
}

170
lib/checkout_page.dart Normal file
View File

@ -0,0 +1,170 @@
import 'package:flutter/material.dart';
import 'services/cart_service.dart';
class CheckoutPage extends StatefulWidget {
const CheckoutPage({super.key});
@override
State<CheckoutPage> createState() => _CheckoutPageState();
}
class _CheckoutPageState extends State<CheckoutPage> {
final CartService _cartService = CartService();
final _formKey = GlobalKey<FormState>();
bool _isLoading = false;
// To store mock final total from cart page
late double _finalTotal;
@override
void initState() {
super.initState();
// Calculate final total once when page loads
_finalTotal = _cartService.totalPrice +
(_cartService.totalPrice * 0.07) + // Mock tax
(_cartService.totalPrice > 50 ? 0 : 5.00); // Mock shipping
// If cart is empty when navigating here, redirect.
WidgetsBinding.instance.addPostFrameCallback((_) {
if (_cartService.items.isEmpty && mounted) {
Navigator.pushNamedAndRemoveUntil(context, '/home', (route) => false);
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text('Your cart is empty. Cannot proceed to checkout.')),
);
}
});
}
void _placeOrder() async {
if (_formKey.currentState!.validate()) {
_formKey.currentState!.save();
setState(() => _isLoading = true);
await Future.delayed(const Duration(seconds: 2)); // Simulate network call
final orderTotal = _finalTotal; // Use the calculated final total
_cartService.clearCart();
setState(() => _isLoading = false);
if (mounted) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text('Mock order placed successfully for \$${orderTotal.toStringAsFixed(2)}!'),
duration: const Duration(seconds: 3),
backgroundColor: Theme.of(context).colorScheme.primary, // Or a specific success color
),
);
Navigator.pushNamedAndRemoveUntil(context, '/home', (route) => false);
}
}
}
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
final cartItems = _cartService.items;
// This check is a fallback, initState handles initial redirection
if (cartItems.isEmpty && !_isLoading) {
return const Scaffold(body: Center(child: CircularProgressIndicator()));
}
return Scaffold(
appBar: AppBar(
title: const Text('Checkout'),
centerTitle: true,
),
body: SingleChildScrollView(
padding: const EdgeInsets.all(16.0),
child: Form(
key: _formKey,
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
Text('Order Summary', style: theme.textTheme.headlineSmall),
const SizedBox(height: 8),
Card(
child: Padding(
padding: const EdgeInsets.all(12.0),
child: Column(
children: [
...cartItems.map((item) => ListTile(
leading: Image.network(item.product.imageUrl, width: 40, height: 40, fit: BoxFit.cover, errorBuilder: (c,o,s) => const Icon(Icons.image)),
title: Text('${item.product.name} (x${item.quantity})', style: theme.textTheme.bodyMedium),
trailing: Text('\$${item.subtotal.toStringAsFixed(2)}', style: theme.textTheme.bodyMedium),
)),
const Divider(height: 20, thickness: 0.5),
ListTile(
title: Text('Subtotal', style: theme.textTheme.titleSmall),
trailing: Text('\$${_cartService.totalPrice.toStringAsFixed(2)}', style: theme.textTheme.titleSmall),
),
ListTile(
title: Text('Est. Tax (7%)', style: theme.textTheme.titleSmall),
trailing: Text('\$${(_cartService.totalPrice * 0.07).toStringAsFixed(2)}', style: theme.textTheme.titleSmall),
),
ListTile(
title: Text('Shipping', style: theme.textTheme.titleSmall),
trailing: Text(_cartService.totalPrice > 50 ? 'FREE' : '\$5.00', style: theme.textTheme.titleSmall),
),
const Divider(height: 20, thickness: 1),
ListTile(
title: Text('Total Amount', style: theme.textTheme.titleMedium?.copyWith(fontWeight: FontWeight.bold)),
trailing: Text('\$${_finalTotal.toStringAsFixed(2)}', style: theme.textTheme.titleLarge?.copyWith(color: theme.colorScheme.primary, fontWeight: FontWeight.bold)),
),
],
),
),
),
const SizedBox(height: 24),
Text('Shipping Information (Mock)', style: theme.textTheme.headlineSmall),
const SizedBox(height: 12),
_buildTextField(label: 'Full Name', icon: Icons.person_outline, validator: (val) => val!.isEmpty ? 'Enter full name' : null),
const SizedBox(height: 12),
_buildTextField(label: 'Address Line 1', icon: Icons.home_outlined, validator: (val) => val!.isEmpty ? 'Enter address' : null),
const SizedBox(height: 12),
_buildTextField(label: 'City', icon: Icons.location_city_outlined, validator: (val) => val!.isEmpty ? 'Enter city' : null),
const SizedBox(height: 12),
_buildTextField(label: 'Postal Code', icon: Icons.markunread_mailbox_outlined, keyboardType: TextInputType.number, validator: (val) => val!.isEmpty ? 'Enter postal code' : null),
const SizedBox(height: 24),
Text('Payment Details (Mock)', style: theme.textTheme.headlineSmall),
const SizedBox(height: 12),
_buildTextField(label: 'Card Number', icon: Icons.credit_card_outlined, keyboardType: TextInputType.number, validator: (val) => val!.isEmpty ? 'Enter card number' : null),
const SizedBox(height: 12),
Row(
children: [
Expanded(child: _buildTextField(label: 'Expiry Date (MM/YY)', icon: Icons.calendar_today_outlined, keyboardType: TextInputType.datetime, validator: (val) => val!.isEmpty ? 'Enter expiry' : null)),
const SizedBox(width: 12),
Expanded(child: _buildTextField(label: 'CVV', icon: Icons.lock_outline, keyboardType: TextInputType.number, validator: (val) => val!.isEmpty ? 'Enter CVV' : null)),
],
),
const SizedBox(height: 32),
_isLoading
? const Center(child: CircularProgressIndicator())
: ElevatedButton(
onPressed: _placeOrder,
child: const Text('Place Mock Order'),
),
const SizedBox(height: 16),
],
),
),
),
);
}
Widget _buildTextField({required String label, required IconData icon, TextInputType? keyboardType, required FormFieldValidator<String> validator}) {
return TextFormField(
decoration: InputDecoration(
labelText: label,
prefixIcon: Icon(icon),
),
keyboardType: keyboardType,
validator: validator,
autovalidateMode: AutovalidateMode.onUserInteraction,
);
}
}

View File

@ -0,0 +1,70 @@
import '../models/product_model.dart'; // Import your Product model
final List<Product> mockProducts = [
Product(
id: '1',
name: 'Nighthawk AX12 Router',
description: 'Blazing fast Wi-Fi 6 router for demanding networks and gaming.',
// Using Picsum Photos: https://picsum.photos/
// The numbers are width/height. The ?random=1 ensures a different image.
imageUrl: 'https://picsum.photos/seed/router1/400/300',
price: 299.99,
category: 'Routers',
),
Product(
id: '2',
name: 'MeshForce M3s Wi-Fi System',
description: 'Whole-home mesh Wi-Fi system for seamless coverage up to 6000 sq ft.',
imageUrl: 'https://picsum.photos/seed/mesh1/400/300',
price: 179.00,
category: 'Mesh Systems',
),
Product(
id: '3',
name: 'TP-Link 8 Port Gigabit Switch',
description: 'Expand your wired network with this reliable and easy-to-use switch.',
imageUrl: 'https://picsum.photos/seed/switch1/400/300',
price: 24.99,
category: 'Switches',
),
Product(
id: '4',
name: 'Arris Surfboard SB8200 Modem',
description: 'DOCSIS 3.1 cable modem for high-speed internet plans.',
imageUrl: 'https://picsum.photos/seed/modem1/400/300',
price: 149.99,
category: 'Modems',
),
Product(
id: '5',
name: 'Ubiquiti EdgeRouter X',
description: 'Advanced SOHO router with powerful features and compact design.',
imageUrl: 'https://picsum.photos/seed/edgerouter/400/300',
price: 59.00,
category: 'Routers',
),
Product(
id: '6',
name: 'Netgear Orbi RBK752',
description: 'Tri-band Mesh WiFi 6 System, reliable coverage for your smart home.',
imageUrl: 'https://picsum.photos/seed/orbi1/400/300',
price: 379.99,
category: 'Mesh Systems',
),
Product(
id: '7',
name: 'Ethernet Network Cable 50ft',
description: 'Cat 6 Ethernet cable for high-speed wired connections.',
imageUrl: 'https://picsum.photos/seed/cable1/400/300',
price: 12.99,
category: 'Accessories',
),
Product(
id: '8',
name: 'Raspberry Pi 4 Model B',
description: 'Versatile single-board computer, perfect for network projects.',
imageUrl: 'https://picsum.photos/seed/rpi4/400/300',
price: 75.00,
category: 'DIY Networking',
),
];

View File

@ -0,0 +1,142 @@
import 'package:flutter/material.dart';
class ForgotPasswordPage extends StatefulWidget {
const ForgotPasswordPage({super.key});
@override
State<ForgotPasswordPage> createState() => _ForgotPasswordPageState();
}
class _ForgotPasswordPageState extends State<ForgotPasswordPage> {
final _formKey = GlobalKey<FormState>();
final TextEditingController _emailController = TextEditingController();
bool _isLoading = false;
String? _validateEmail(String? value) {
if (value == null || value.isEmpty) {
return 'Please enter your email';
}
if (!RegExp(r"^[a-zA-Z0-9.a-zA-Z0-9.!#$%&'*+-/=?^_`{|}~]+@[a-zA-Z0-9]+\.[a-zA-Z]+").hasMatch(value)) {
return 'Please enter a valid email';
}
return null;
}
Future<void> _sendResetLink() async {
if (_formKey.currentState!.validate()) {
setState(() {
_isLoading = true;
});
// Simulate network delay
await Future.delayed(const Duration(seconds: 1));
final email = _emailController.text;
setState(() {
_isLoading = false;
});
if (mounted) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text('If an account exists for $email, a reset link has been mock-sent.'),
duration: const Duration(seconds: 3),
),
);
// Optionally navigate back after showing the message
await Future.delayed(const Duration(seconds: 1)); // Give time to read snackbar
if (mounted && Navigator.canPop(context)) {
Navigator.pop(context); // Go back to the login page
}
}
}
}
@override
void dispose() {
_emailController.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
return Scaffold(
appBar: AppBar(
title: const Text('Reset Password'),
leading: IconButton( // Custom back button if you want, or let default work
icon: const Icon(Icons.arrow_back),
onPressed: () => Navigator.of(context).pop(),
),
),
body: Center(
child: SingleChildScrollView(
padding: const EdgeInsets.all(25.0),
child: Form(
key: _formKey,
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.stretch,
children: <Widget>[
Icon(
Icons.lock_reset_outlined,
size: 80,
color: theme.primaryColor,
),
const SizedBox(height: 20),
Text(
'Forgot Your Password?',
textAlign: TextAlign.center,
style: theme.textTheme.headlineSmall?.copyWith(
color: theme.primaryColor,
),
),
const SizedBox(height: 10),
Text(
'Enter your email address below and we\'ll (mock) send you a link to reset your password.',
textAlign: TextAlign.center,
style: theme.textTheme.bodyLarge,
),
const SizedBox(height: 40),
TextFormField(
controller: _emailController,
decoration: const InputDecoration(
hintText: 'Enter your Email Address',
prefixIcon: Icon(Icons.email_outlined),
),
keyboardType: TextInputType.emailAddress,
validator: _validateEmail,
autovalidateMode: AutovalidateMode.onUserInteraction,
),
const SizedBox(height: 30),
_isLoading
? const Center(child: CircularProgressIndicator())
: ElevatedButton(
onPressed: _sendResetLink,
child: const Text('Send Reset Link'),
),
const SizedBox(height: 20),
TextButton(
onPressed: () {
if (Navigator.canPop(context)) {
Navigator.pop(context); // Go back to login
} else {
// Fallback if it can't pop (e.g., if opened directly)
Navigator.pushReplacementNamed(context, '/');
}
},
child: Text(
'Back to Login',
style: TextStyle(color: theme.primaryColor),
),
)
],
),
),
),
),
);
}
}

199
lib/home_page.dart Normal file
View File

@ -0,0 +1,199 @@
import 'package:flutter/material.dart';
import '../data/mock_products.dart';
import '../models/product_model.dart';
import '../widgets/product_card.dart';
import '../main.dart'; // Import main.dart to access myAppKey
import '../services/cart_service.dart'; // Added
class HomePage extends StatefulWidget {
const HomePage({super.key});
@override
State<HomePage> createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
late List<Product> _filteredProducts;
String _searchQuery = '';
final TextEditingController _searchController = TextEditingController();
final CartService _cartService = CartService(); // Added CartService instance
@override
void initState() {
super.initState();
_filteredProducts = List.from(mockProducts);
_searchController.addListener(() {
_performSearch();
});
_cartService.addListener(_onCartChanged); // Listen to cart changes
}
@override
void dispose() {
_searchController.dispose();
_cartService.removeListener(_onCartChanged); // Remove listener
super.dispose();
}
void _onCartChanged() {
if (mounted) {
setState(() {}); // Rebuild to update cart badge
}
}
void _performSearch() {
final query = _searchController.text.toLowerCase().trim();
setState(() {
_searchQuery = query;
if (_searchQuery.isEmpty) {
_filteredProducts = List.from(mockProducts);
} else {
_filteredProducts = mockProducts.where((product) {
final productName = product.name.toLowerCase();
final productDescription = product.description.toLowerCase();
return productName.contains(_searchQuery) ||
productDescription.contains(_searchQuery);
}).toList();
}
});
}
void _clearSearch() {
_searchController.clear();
// _performSearch will be called by the listener
}
@override
Widget build(BuildContext context) {
final double screenWidth = MediaQuery.of(context).size.width;
int crossAxisCount = 2;
if (screenWidth > 1200) {
crossAxisCount = 4;
} else if (screenWidth > 800) {
crossAxisCount = 3;
}
final currentThemeMode =
myAppKey.currentState?.themeMode ?? ThemeMode.light;
final isDarkMode = currentThemeMode == ThemeMode.dark;
final cartItemCount = _cartService.itemCount; // Get cart item count
return Scaffold(
appBar: AppBar(
title: const Text('Amazons - Browse Gadgets'),
automaticallyImplyLeading: false,
centerTitle: true,
actions: [
Tooltip(
message: isDarkMode ? 'Switch to Light Mode' : 'Switch to Dark Mode',
child: Switch(
value: isDarkMode,
onChanged: (value) {
myAppKey.currentState?.changeTheme(
value ? ThemeMode.dark : ThemeMode.light,
);
},
activeColor: Theme.of(context).colorScheme.primary,
inactiveThumbColor: Colors.grey[100],
),
),
IconButton(
icon: const Icon(Icons.notifications_outlined), // Updated icon
tooltip: 'Notifications',
onPressed: () {
Navigator.pushNamed(context, '/notifications'); // Navigate to notifications
},
),
Padding( // To give cart icon some space from edge if needed
padding: const EdgeInsets.only(right: 0.0), // Adjusted padding
child: Center( // Better alignment for badge
child: Badge(
label: Text('$cartItemCount'),
isLabelVisible: cartItemCount > 0,
backgroundColor: Theme.of(context).colorScheme.error, // Or primary for emphasis
textColor: Theme.of(context).colorScheme.onError, // Ensure text is visible
child: IconButton(
icon: const Icon(Icons.shopping_cart_outlined),
tooltip: 'Your Cart',
onPressed: () {
Navigator.pushNamed(context, '/cart'); // Navigate to cart
},
),
),
),
),
IconButton(
icon: const Icon(Icons.logout),
tooltip: 'Logout',
onPressed: () {
// Clear cart on logout - optional, but good practice for mock app
// _cartService.clearCart();
Navigator.pushNamedAndRemoveUntil(context, '/', (route) => false);
},
),
],
),
body: Column(
children: [
Padding(
padding: const EdgeInsets.fromLTRB(16.0, 16.0, 16.0, 8.0),
child: TextField(
controller: _searchController,
decoration: InputDecoration(
hintText: 'Search gadgets by name or description...',
prefixIcon: const Icon(Icons.search),
suffixIcon: _searchQuery.isNotEmpty
? IconButton(
icon: const Icon(Icons.clear),
onPressed: _clearSearch,
)
: null,
),
),
),
if (_filteredProducts.isEmpty && _searchQuery.isNotEmpty)
Expanded(
child: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(Icons.search_off, size: 60, color: Colors.grey[400]),
const SizedBox(height: 16),
Text(
'No gadgets found for "$_searchQuery"',
style: Theme.of(context)
.textTheme
.titleMedium
?.copyWith(color: Colors.grey[600]),
textAlign: TextAlign.center,
),
const SizedBox(height: 8),
ElevatedButton(
onPressed: _clearSearch,
child: const Text('Clear Search'),
)
],
),
),
)
else
Expanded(
child: GridView.builder(
padding: const EdgeInsets.fromLTRB(10.0, 0, 10.0, 10.0),
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: crossAxisCount,
crossAxisSpacing: 10.0,
mainAxisSpacing: 10.0,
childAspectRatio: 0.54, // This might need adjustment if ProductCard height changed
),
itemCount: _filteredProducts.length,
itemBuilder: (BuildContext context, int index) {
return ProductCard(product: _filteredProducts[index]);
},
),
),
],
),
);
}
}

271
lib/login_signup_page.dart Normal file
View File

@ -0,0 +1,271 @@
import 'package:flutter/material.dart';
class LoginSignupPage extends StatefulWidget {
const LoginSignupPage({super.key});
@override
State<LoginSignupPage> createState() => _LoginSignupPageState();
}
class _LoginSignupPageState extends State<LoginSignupPage> {
final _formKey = GlobalKey<FormState>();
final TextEditingController _emailController = TextEditingController();
final TextEditingController _passwordController = TextEditingController();
final TextEditingController _phoneController = TextEditingController();
String? _errorMessage;
bool _isLoading = false;
bool _isLoginMode = true;
// ... (rest of your validation methods, _toggleMode, _submitForm, dispose) ...
// No changes needed in the methods above for this step
@override
void dispose() {
_emailController.dispose();
_passwordController.dispose();
_phoneController.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
return Scaffold(
appBar: AppBar(
title: Text(_isLoginMode ? 'Amazons Login' : 'Amazons Sign Up'),
centerTitle: true,
actions: [
IconButton(
icon: const Icon(Icons.wifi),
onPressed: () {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text('Wi-Fi status: Connected (mock)')),
);
},
),
],
),
body: Center(
child: SingleChildScrollView(
padding: const EdgeInsets.all(25.0),
child: Form(
key: _formKey,
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.stretch,
children: <Widget>[
// --- YOUR IMAGE LOGO ---
Image.asset(
'images/logo.png', // <-- REPLACE 'your_logo.png' WITH YOUR ACTUAL FILENAME
height: 80, // Adjust height as needed
width: 150, // You can also set width
fit: BoxFit.contain, // How the image should be inscribed into the space
),
const SizedBox(height: 20), // Spacing after logo
Text(
_isLoginMode ? 'Welcome Back!' : 'Create Account',
textAlign: TextAlign.center,
style: theme.textTheme.displayLarge?.copyWith(
color: theme.primaryColor,
),
),
const SizedBox(height: 10),
Text(
_isLoginMode ? 'Login to continue' : 'Fill in the details to join',
textAlign: TextAlign.center,
style: theme.textTheme.titleMedium,
),
const SizedBox(height: 40),
// ... (rest of your form fields and buttons) ...
// No changes needed below for this step
// --- Email Text Field ---
TextFormField(
controller: _emailController,
decoration: const InputDecoration(
hintText: 'Email Address',
prefixIcon: Icon(Icons.email_outlined),
),
keyboardType: TextInputType.emailAddress,
validator: _validateEmail,
autovalidateMode: AutovalidateMode.onUserInteraction,
),
const SizedBox(height: 20),
// --- Password Text Field ---
TextFormField(
controller: _passwordController,
decoration: const InputDecoration(
hintText: 'Password',
prefixIcon: Icon(Icons.lock_outline),
),
obscureText: true,
validator: _validatePassword,
autovalidateMode: AutovalidateMode.onUserInteraction,
),
const SizedBox(height: 20),
// --- Phone Number Text Field (Conditional) ---
if (!_isLoginMode)
Padding(
padding: const EdgeInsets.only(bottom: 20.0),
child: TextFormField(
controller: _phoneController,
decoration: const InputDecoration(
hintText: 'Phone Number',
prefixIcon: Icon(Icons.phone_outlined),
),
keyboardType: TextInputType.phone,
validator: _validatePhoneNumber,
autovalidateMode: AutovalidateMode.onUserInteraction,
),
),
// --- Error Message Display ---
if (_errorMessage != null && !_isLoading)
Padding(
padding: const EdgeInsets.only(bottom: 15.0),
child: Text(
_errorMessage!,
style: TextStyle(
color: theme.colorScheme.error,
fontWeight: FontWeight.w500),
textAlign: TextAlign.center,
),
),
// --- Loading Indicator or Main Action Button ---
_isLoading
? const Center(child: CircularProgressIndicator())
: ElevatedButton(
onPressed: _submitForm,
child: Text(_isLoginMode ? 'Login' : 'Create Account'),
),
const SizedBox(height: 15),
// --- Toggle Mode Button ---
if (!_isLoading)
TextButton(
onPressed: _toggleMode,
child: Text(
_isLoginMode
? "Don't have an account? Sign Up"
: "Already have an account? Login",
style: theme.textTheme.titleMedium,
),
),
const SizedBox(height: 10),
// --- Forgot Password (Only in Login Mode) ---
if (_isLoginMode && !_isLoading)
Padding( // Added padding for better spacing
padding: const EdgeInsets.only(top: 8.0),
child: TextButton(
onPressed: (){
// Navigate to the Forgot Password page
Navigator.pushNamed(context, '/forgot-password');
},
child: Text(
'Forgot Password?',
style: theme.textTheme.titleMedium,
)
),
)
],
),
),
),
),
);
}
// Paste your existing _validateEmail, _validatePassword, _validatePhoneNumber,
// _toggleMode, and _submitForm methods here if they were not fully included above.
String? _validateEmail(String? value) {
if (value == null || value.isEmpty) {
return 'Please enter your email';
}
if (!RegExp(r"^[a-zA-Z0-9.a-zA-Z0-9.!#$%&'*+-/=?^_`{|}~]+@[a-zA-Z0-9]+\.[a-zA-Z]+").hasMatch(value)) {
return 'Please enter a valid email';
}
return null;
}
String? _validatePassword(String? value) {
if (value == null || value.isEmpty) {
return 'Please enter your password';
}
if (value.length < 6) {
return 'Password must be at least 6 characters';
}
return null;
}
String? _validatePhoneNumber(String? value) {
// This validator is only active when the field is present (i.e., signup mode)
if (value == null || value.isEmpty) {
return 'Please enter your phone number';
}
if (value.length < 10) { // Basic length check
return 'Phone number must be at least 10 digits';
}
if (!RegExp(r'^[0-9]+$').hasMatch(value)) { // Digits only
return 'Please enter a valid phone number (digits only)';
}
return null;
}
void _toggleMode() {
setState(() {
_isLoginMode = !_isLoginMode;
_errorMessage = null; // Clear errors when switching modes
_formKey.currentState?.reset(); // Optional: reset form fields
_emailController.clear();
_passwordController.clear();
_phoneController.clear();
});
}
Future<void> _submitForm() async {
setState(() {
_errorMessage = null;
});
if (_formKey.currentState!.validate()) {
setState(() {
_isLoading = true;
});
await Future.delayed(const Duration(seconds: 1)); // Simulate network
String password = _passwordController.text;
String email = _emailController.text;
String actionType = _isLoginMode ? "Login" : "Sign Up";
if (password.startsWith('gym')) {
print('$actionType successful for: $email');
if (!_isLoginMode) {
print('Phone Number: ${_phoneController.text}');
}
if (mounted) { // Check if the widget is still in the tree
Navigator.pushReplacementNamed(context, '/home');
}
} else {
setState(() {
_errorMessage = 'Password must start with "gym" to $actionType.';
});
}
setState(() {
_isLoading = false;
});
}
}
}

53
lib/main.dart Normal file
View File

@ -0,0 +1,53 @@
import 'package:flutter/material.dart';
import 'login_signup_page.dart';
import 'home_page.dart';
import 'forgot_password_page.dart';
import 'theme/app_theme.dart';
import 'splash_page.dart'; // Added
import 'cart_page.dart'; // Added
import 'checkout_page.dart'; // Added
import 'notification_page.dart'; // Added
final GlobalKey<_MyAppState> myAppKey = GlobalKey();
void main() {
runApp(MyApp(key: myAppKey));
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
ThemeMode themeMode = ThemeMode.light;
void changeTheme(ThemeMode newThemeMode) {
setState(() {
themeMode = newThemeMode;
});
}
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Amazons Mock App',
debugShowCheckedModeBanner: false,
theme: AppTheme.lightTheme,
darkTheme: AppTheme.darkTheme,
themeMode: themeMode,
initialRoute: '/splash', // Changed to splash
routes: {
'/splash': (context) => const SplashPage(), // Added splash route
'/': (context) => const LoginSignupPage(), // Login/Signup is now root after splash
'/home': (context) => const HomePage(),
'/forgot-password': (context) => const ForgotPasswordPage(),
'/cart': (context) => const CartPage(), // Added cart route
'/checkout': (context) => const CheckoutPage(), // Added checkout route
'/notifications': (context) => const NotificationPage(), // Added notification route
},
);
}
}

View File

@ -0,0 +1,13 @@
import 'product_model.dart';
class CartItem {
final Product product;
int quantity;
CartItem({
required this.product,
this.quantity = 1,
});
double get subtotal => product.price * quantity;
}

View File

@ -0,0 +1,19 @@
import 'package:flutter/material.dart';
class NotificationModel {
final String id;
final String title;
final String message;
final DateTime timestamp;
final IconData icon;
bool isRead;
NotificationModel({
required this.id,
required this.title,
required this.message,
required this.timestamp,
required this.icon,
this.isRead = false,
});
}

View File

@ -0,0 +1,17 @@
class Product {
final String id;
final String name;
final String description;
final String imageUrl; // We'll use placeholder URLs
final double price;
final String category;
Product({
required this.id,
required this.name,
required this.description,
required this.imageUrl,
required this.price,
required this.category,
});
}

153
lib/notification_page.dart Normal file
View File

@ -0,0 +1,153 @@
import 'package:flutter/material.dart';
import 'models/notification_model.dart';
import 'widgets/empty_state_widget.dart';
class NotificationPage extends StatefulWidget {
const NotificationPage({super.key});
@override
State<NotificationPage> createState() => _NotificationPageState();
}
class _NotificationPageState extends State<NotificationPage> {
final List<NotificationModel> _notifications = [
NotificationModel(id: '1', title: 'Order Shipped!', message: 'Your order #AMZ12345 for Nighthawk AX12 Router has been shipped.', timestamp: DateTime.now().subtract(const Duration(hours: 2)), icon: Icons.local_shipping_outlined),
NotificationModel(id: '2', title: 'Weekend Deal!', message: 'Get 15% off on all Mesh Systems this weekend. Use code WEEKEND15.', timestamp: DateTime.now().subtract(const Duration(days: 1)), icon: Icons.campaign_outlined, isRead: true),
NotificationModel(id: '3', title: 'Password Reset Confirmation', message: 'Your password was successfully reset on a new device an hour ago.', timestamp: DateTime.now().subtract(const Duration(days: 3)), icon: Icons.lock_reset_outlined),
NotificationModel(id: '4', title: 'New Login Detected', message: 'We detected a new login to your account from a new device in California, US.', timestamp: DateTime.now().subtract(const Duration(days: 3, hours: 2)), icon: Icons.login_outlined, isRead: true),
NotificationModel(id: '5', title: 'Feature Update: Dark Mode', message: 'Dark mode is now even better! Check out the latest app improvements and enjoy a smoother experience.', timestamp: DateTime.now().subtract(const Duration(days: 5)), icon: Icons.new_releases_outlined),
];
void _markAsRead(NotificationModel notification) {
setState(() {
notification.isRead = true;
});
}
void _deleteNotification(String id) {
setState(() {
_notifications.removeWhere((n) => n.id == id);
});
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text('Notification dismissed'), duration: Duration(seconds: 1)),
);
}
String _timeAgo(DateTime date) {
final Duration diff = DateTime.now().difference(date);
if (diff.inDays >= 365) return "${(diff.inDays / 365).floor()} year(s)";
if (diff.inDays >= 30) return "${(diff.inDays / 30).floor()} month(s)";
if (diff.inDays > 0) return "${diff.inDays} day(s)";
if (diff.inHours > 0) return "${diff.inHours} hour(s)";
if (diff.inMinutes > 0) return "${diff.inMinutes} minute(s)";
return "Just now";
}
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
return Scaffold(
appBar: AppBar(
title: const Text('Notifications'),
centerTitle: true,
actions: [
if (_notifications.any((n) => !n.isRead))
IconButton(
icon: const Icon(Icons.mark_chat_read_outlined),
tooltip: 'Mark all as read',
onPressed: () {
setState(() {
for (var n in _notifications) {
n.isRead = true;
}
});
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text('All notifications marked as read.')),
);
},
)
],
),
body: _notifications.isEmpty
? const EmptyStateWidget(
icon: Icons.notifications_off_outlined,
message: 'You have no notifications yet.',
)
: ListView.builder(
padding: const EdgeInsets.symmetric(vertical: 8.0),
itemCount: _notifications.length,
itemBuilder: (context, index) {
final notification = _notifications[index];
return Dismissible(
key: Key(notification.id),
direction: DismissDirection.endToStart,
onDismissed: (direction) {
_deleteNotification(notification.id);
},
background: Container(
color: theme.colorScheme.errorContainer,
alignment: Alignment.centerRight,
padding: const EdgeInsets.symmetric(horizontal: 20.0),
child: Icon(Icons.delete_outline, color: theme.colorScheme.onErrorContainer),
),
child: Card(
margin: const EdgeInsets.symmetric(horizontal: 12, vertical: 6),
elevation: notification.isRead ? 1 : 2.5,
shape: RoundedRectangleBorder(
side: BorderSide(
color: notification.isRead ? theme.dividerColor.withOpacity(0.5) : theme.colorScheme.primary.withOpacity(0.6),
width: notification.isRead ? 0.8 : 1.2,
),
borderRadius: BorderRadius.circular(theme.cardTheme.shape is RoundedRectangleBorder ? (theme.cardTheme.shape as RoundedRectangleBorder).borderRadius.resolve(Directionality.of(context)).topLeft.x : 8)
),
child: ListTile(
leading: CircleAvatar(
backgroundColor: notification.isRead
? theme.colorScheme.secondaryContainer.withOpacity(0.5)
: theme.colorScheme.primaryContainer,
child: Icon(
notification.icon,
color: notification.isRead
? theme.colorScheme.onSecondaryContainer.withOpacity(0.7)
: theme.colorScheme.onPrimaryContainer,
size: 22,
),
),
title: Text(
notification.title,
style: theme.textTheme.titleMedium?.copyWith(
fontWeight: notification.isRead ? FontWeight.normal : FontWeight.w600,
color: notification.isRead ? theme.textTheme.titleMedium?.color?.withOpacity(0.8) : theme.textTheme.titleMedium?.color,
),
),
subtitle: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: [
Text(notification.message, maxLines: 2, overflow: TextOverflow.ellipsis, style: theme.textTheme.bodySmall),
const SizedBox(height: 4),
Text(
'${_timeAgo(notification.timestamp)} ago',
style: theme.textTheme.bodySmall?.copyWith(color: theme.textTheme.bodySmall?.color?.withOpacity(0.6), fontSize: 11),
),
],
),
isThreeLine: true,
trailing: !notification.isRead
? Icon(Icons.circle, size: 10, color: theme.colorScheme.primary)
: null,
onTap: () {
_markAsRead(notification);
// Mock action: show snackbar
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(content: Text('Notification "${notification.title}" viewed.'), duration: const Duration(seconds: 2)),
);
},
),
),
);
},
),
);
}
}

View File

@ -0,0 +1,50 @@
import 'package:flutter/foundation.dart';
import '../models/product_model.dart';
import '../models/cart_item_model.dart';
class CartService extends ChangeNotifier {
static final CartService _instance = CartService._internal();
factory CartService() => _instance;
CartService._internal();
final List<CartItem> _items = [];
List<CartItem> get items => List.unmodifiable(_items);
int get itemCount => _items.fold(0, (sum, item) => sum + item.quantity);
int get uniqueItemCount => _items.length;
double get totalPrice => _items.fold(0.0, (sum, item) => sum + item.subtotal);
void addItem(Product product) {
final index = _items.indexWhere((item) => item.product.id == product.id);
if (index != -1) {
_items[index].quantity++;
} else {
_items.add(CartItem(product: product, quantity: 1));
}
notifyListeners();
}
void removeItem(String productId) {
final index = _items.indexWhere((item) => item.product.id == productId);
if (index != -1) {
if (_items[index].quantity > 1) {
_items[index].quantity--;
} else {
_items.removeAt(index);
}
notifyListeners();
}
}
void removeAllOfProduct(String productId) {
_items.removeWhere((item) => item.product.id == productId);
notifyListeners();
}
void clearCart() {
_items.clear();
notifyListeners();
}
}

55
lib/splash_page.dart Normal file
View File

@ -0,0 +1,55 @@
import 'dart:async';
import 'package:flutter/material.dart';
class SplashPage extends StatefulWidget {
const SplashPage({super.key});
@override
State<SplashPage> createState() => _SplashPageState();
}
class _SplashPageState extends State<SplashPage> {
@override
void initState() {
super.initState();
Timer(const Duration(seconds: 3), () {
if (mounted) {
// Navigate to the login page (which is now potentially under '/login' or '/')
// Based on main.dart, '/' is LoginSignupPage, so that's fine.
Navigator.pushReplacementNamed(context, '/');
}
});
}
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
return Scaffold(
backgroundColor: theme.colorScheme.background,
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Image.asset(
'images/logo.png', // Ensure this path is correct as per your project
height: 120,
width: 200,
fit: BoxFit.contain,
),
const SizedBox(height: 24),
Text(
'Amazons',
style: theme.textTheme.displayMedium?.copyWith(
color: theme.primaryColor,
),
),
const SizedBox(height: 16),
CircularProgressIndicator(
valueColor: AlwaysStoppedAnimation<Color>(theme.primaryColor),
),
],
),
),
);
}
}

643
lib/theme/app_theme.dart Normal file
View File

@ -0,0 +1,643 @@
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
/// Enhanced Flutter theme with improved light and dark modes
/// Features better color cohesion, refined component styles, and additional theme elements
// --- Core Color Palettes ---
class AppColors {
// Light Theme
static const primaryLight = Color(0xFFC76723); // Amazon Orange
static const secondaryLight = Color(0xFF232F3E); // Amazon Dark Blue
static const accentLight = Color(0xFF037EC0); // Complementary Blue
static const errorLight = Color(0xFFD32F2F); // Error Red
static const successLight = Color(0xFF388E3C); // Success Green
static const warningLight = Color(0xFFFFA000); // Warning Amber
static const infoLight = Color(0xFF1976D2); // Info Blue
// Backgrounds & Surfaces (Light)
static const scaffoldLight = Color(0xFFFAFAFA); // Off-white for less eye strain
static const cardLight = Colors.white;
static const textFieldLight = Color(0xFFF5F5F5);
static const dividerLight = Color(0xFFE0E0E0);
// Text Colors (Light)
static const textPrimaryLight = Color(0xFF212121);
static const textSecondaryLight = Color(0xFF757575);
static const textTertiaryLight = Color(0xFF9E9E9E);
static const onPrimaryLight = Colors.white;
// Dark Theme
static const primaryDark = Color(0xFFFFAB40); // Lighter Orange for dark theme
static const secondaryDark = Color(0xFF1A2433); // Deeper blue for dark mode
static const accentDark = Color(0xFF4FC3F7); // Light Blue accent
static const errorDark = Color(0xFFEF5350); // Brighter Error
static const successDark = Color(0xFF66BB6A); // Brighter Success
static const warningDark = Color(0xFFFFD54F); // Brighter Warning
static const infoDark = Color(0xFF42A5F5); // Brighter Info
// Backgrounds & Surfaces (Dark)
static const scaffoldDark = Color(0xFF121212); // Material dark background
static const cardDark = Color(0xFF1D1D1D); // Slightly lighter than scaffold
static const textFieldDark = Color(0xFF2C2C2C); // Lighter input fields for contrast
static const dividerDark = Color(0xFF424242); // Dark dividers
// Text Colors (Dark)
static const textPrimaryDark = Color(0xFFECECEC); // Not pure white for less eye strain
static const textSecondaryDark = Color(0xFFB0B0B0);
static const textTertiaryDark = Color(0xFF787878);
static const onPrimaryDark = Color(0xFF121212); // Dark text on light buttons
static const lowerLoginText = Color(0xFF121212);
}
// Common spacing & dimensions
class AppDimensions {
static const double xs = 4.0;
static const double sm = 8.0;
static const double md = 16.0;
static const double lg = 24.0;
static const double xl = 32.0;
static const double buttonHeight = 52.0;
static const double buttonRadius = 8.0;
static const double cardRadius = 12.0;
static const double textFieldRadius = 8.0;
}
class AppTheme {
static TextTheme _buildTextTheme(TextTheme base, Color primaryTextColor, Color secondaryTextColor) {
return base.copyWith(
displayLarge: GoogleFonts.roboto(
fontSize: 28,
fontWeight: FontWeight.bold,
letterSpacing: -0.5,
color: primaryTextColor,
),
displayMedium: GoogleFonts.roboto(
fontSize: 24,
fontWeight: FontWeight.w700,
letterSpacing: -0.25,
color: primaryTextColor,
),
displaySmall: GoogleFonts.roboto(
fontSize: 20,
fontWeight: FontWeight.w700,
color: primaryTextColor,
),
headlineMedium: GoogleFonts.roboto(
fontSize: 18,
fontWeight: FontWeight.w600,
color: primaryTextColor,
),
headlineSmall: GoogleFonts.roboto(
fontSize: 16,
fontWeight: FontWeight.w600,
color: primaryTextColor,
),
titleLarge: GoogleFonts.roboto(
fontSize: 16,
fontWeight: FontWeight.w600,
color: primaryTextColor,
),
titleMedium: GoogleFonts.roboto(
fontSize: 14,
fontWeight: FontWeight.w500,
color: primaryTextColor,
),
titleSmall: GoogleFonts.roboto(
fontSize: 13,
fontWeight: FontWeight.w500,
color: secondaryTextColor,
),
bodyLarge: GoogleFonts.roboto(
fontSize: 16,
color: primaryTextColor,
),
bodyMedium: GoogleFonts.roboto(
fontSize: 14,
color: primaryTextColor,
),
bodySmall: GoogleFonts.roboto(
fontSize: 12,
color: secondaryTextColor,
),
labelLarge: GoogleFonts.roboto(
fontSize: 14,
fontWeight: FontWeight.w600,
),
);
}
// Shared button style builder
static ButtonStyle _buildButtonStyle({
required Color backgroundColor,
required Color foregroundColor,
Color? borderColor,
double height = AppDimensions.buttonHeight,
}) {
return ButtonStyle(
backgroundColor: MaterialStateProperty.resolveWith<Color>((states) {
if (states.contains(MaterialState.disabled)) {
return backgroundColor.withOpacity(0.3);
}
if (states.contains(MaterialState.pressed)) {
return backgroundColor.withOpacity(0.8);
}
return backgroundColor;
}),
foregroundColor: MaterialStateProperty.resolveWith<Color>((states) {
if (states.contains(MaterialState.disabled)) {
return foregroundColor.withOpacity(0.5);
}
return foregroundColor;
}),
overlayColor: MaterialStateProperty.resolveWith<Color>((states) {
return foregroundColor.withOpacity(0.1);
}),
shape: MaterialStateProperty.all<RoundedRectangleBorder>(
RoundedRectangleBorder(
borderRadius: BorderRadius.circular(AppDimensions.buttonRadius),
side: borderColor != null
? BorderSide(color: borderColor, width: 1.5)
: BorderSide.none,
),
),
minimumSize: MaterialStateProperty.all<Size>(Size(double.infinity, height)),
padding: MaterialStateProperty.all<EdgeInsets>(
const EdgeInsets.symmetric(horizontal: AppDimensions.lg),
),
elevation: MaterialStateProperty.resolveWith<double>((states) {
if (states.contains(MaterialState.disabled)) return 0;
if (states.contains(MaterialState.pressed)) return 1;
return 2;
}),
);
}
static ThemeData get lightTheme {
final base = ThemeData.light();
final textTheme = _buildTextTheme(
base.textTheme,
AppColors.textPrimaryLight,
AppColors.textSecondaryLight,
);
return ThemeData(
brightness: Brightness.light,
primaryColor: AppColors.primaryLight,
primaryColorDark: AppColors.primaryLight.withOpacity(0.8),
primaryColorLight: AppColors.primaryLight.withOpacity(0.4),
canvasColor: AppColors.scaffoldLight,
scaffoldBackgroundColor: AppColors.scaffoldLight,
cardColor: AppColors.cardLight,
dividerColor: AppColors.dividerLight,
focusColor: AppColors.primaryLight.withOpacity(0.12),
hoverColor: AppColors.primaryLight.withOpacity(0.06),
splashColor: AppColors.primaryLight.withOpacity(0.15),
fontFamily: GoogleFonts.roboto().fontFamily,
// AppBar
appBarTheme: AppBarTheme(
backgroundColor: AppColors.primaryLight,
elevation: 0,
centerTitle: false,
iconTheme: const IconThemeData(color: AppColors.onPrimaryLight),
titleTextStyle: GoogleFonts.roboto(
fontSize: 18,
fontWeight: FontWeight.w600,
color: AppColors.onPrimaryLight,
),
toolbarHeight: 56,
shadowColor: AppColors.secondaryLight.withOpacity(0.15),
),
// Buttons
elevatedButtonTheme: ElevatedButtonThemeData(
style: _buildButtonStyle(
backgroundColor: AppColors.primaryLight,
foregroundColor: AppColors.onPrimaryLight,
),
),
outlinedButtonTheme: OutlinedButtonThemeData(
style: _buildButtonStyle(
backgroundColor: Colors.transparent,
foregroundColor: AppColors.primaryLight,
borderColor: AppColors.primaryLight,
),
),
textButtonTheme: TextButtonThemeData(
style: ButtonStyle(
foregroundColor: MaterialStateProperty.all<Color>(AppColors.primaryLight),
textStyle: MaterialStateProperty.all<TextStyle>(
GoogleFonts.roboto(fontWeight: FontWeight.w600),
),
shape: MaterialStateProperty.all<RoundedRectangleBorder>(
RoundedRectangleBorder(borderRadius: BorderRadius.circular(AppDimensions.sm)),
),
overlayColor: MaterialStateProperty.all<Color>(
AppColors.primaryLight.withOpacity(0.1),
),
),
),
// Card
cardTheme: CardTheme(
color: AppColors.cardLight,
elevation: 2,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(AppDimensions.cardRadius),
),
shadowColor: AppColors.secondaryLight.withOpacity(0.1),
),
// Inputs
inputDecorationTheme: InputDecorationTheme(
filled: true,
fillColor: AppColors.textFieldLight,
contentPadding: const EdgeInsets.symmetric(
horizontal: AppDimensions.md,
vertical: AppDimensions.md,
),
hintStyle: GoogleFonts.roboto(
color: AppColors.textTertiaryLight,
fontSize: 14,
),
labelStyle: GoogleFonts.roboto(
color: AppColors.textSecondaryLight,
fontSize: 14,
),
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(AppDimensions.textFieldRadius),
borderSide: BorderSide.none,
),
enabledBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(AppDimensions.textFieldRadius),
borderSide: BorderSide.none,
),
focusedBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(AppDimensions.textFieldRadius),
borderSide: const BorderSide(color: AppColors.primaryLight, width: 1.5),
),
errorBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(AppDimensions.textFieldRadius),
borderSide: const BorderSide(color: AppColors.errorLight, width: 1.5),
),
focusedErrorBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(AppDimensions.textFieldRadius),
borderSide: const BorderSide(color: AppColors.errorLight, width: 1.5),
),
prefixIconColor: AppColors.textSecondaryLight,
suffixIconColor: AppColors.textSecondaryLight,
),
// Checkbox & Toggle
checkboxTheme: CheckboxThemeData(
fillColor: MaterialStateProperty.resolveWith<Color>((states) {
if (states.contains(MaterialState.disabled)) {
return AppColors.textTertiaryLight;
}
if (states.contains(MaterialState.selected)) {
return AppColors.primaryLight;
}
return Colors.transparent;
}),
side: const BorderSide(width: 1.5, color: AppColors.textSecondaryLight),
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(3)),
),
switchTheme: SwitchThemeData(
thumbColor: MaterialStateProperty.resolveWith<Color>((states) {
if (states.contains(MaterialState.disabled)) {
return AppColors.textTertiaryLight;
}
if (states.contains(MaterialState.selected)) {
return AppColors.primaryLight;
}
return Colors.white;
}),
trackColor: MaterialStateProperty.resolveWith<Color>((states) {
if (states.contains(MaterialState.disabled)) {
return AppColors.dividerLight;
}
if (states.contains(MaterialState.selected)) {
return AppColors.primaryLight.withOpacity(0.4);
}
return AppColors.textTertiaryLight;
}),
),
// Chip
chipTheme: ChipThemeData(
backgroundColor: AppColors.primaryLight.withOpacity(0.08),
disabledColor: AppColors.dividerLight,
selectedColor: AppColors.primaryLight.withOpacity(0.2),
labelStyle: GoogleFonts.roboto(
fontSize: 12,
color: AppColors.textPrimaryLight,
),
secondaryLabelStyle: GoogleFonts.roboto(
fontSize: 12,
color: AppColors.primaryLight,
fontWeight: FontWeight.w500,
),
padding: const EdgeInsets.symmetric(
horizontal: AppDimensions.md,
vertical: AppDimensions.xs,
),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(AppDimensions.sm),
),
),
// Dialogs & Bottom Sheets
dialogTheme: DialogTheme(
backgroundColor: AppColors.cardLight,
elevation: 3,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(AppDimensions.lg),
),
),
bottomSheetTheme: const BottomSheetThemeData(
backgroundColor: AppColors.cardLight,
elevation: 8,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.only(
topLeft: Radius.circular(AppDimensions.xl),
topRight: Radius.circular(AppDimensions.xl),
),
),
),
// Progress Indicators
progressIndicatorTheme: const ProgressIndicatorThemeData(
color: AppColors.primaryLight,
linearTrackColor: AppColors.dividerLight,
refreshBackgroundColor: AppColors.dividerLight,
),
// Color Scheme
colorScheme: ColorScheme.light(
primary: AppColors.primaryLight,
primaryContainer: AppColors.primaryLight.withOpacity(0.15),
onPrimaryContainer: AppColors.primaryLight.withOpacity(0.8),
secondary: AppColors.secondaryLight,
secondaryContainer: AppColors.secondaryLight.withOpacity(0.1),
onSecondaryContainer: AppColors.secondaryLight,
tertiary: AppColors.accentLight,
tertiaryContainer: AppColors.accentLight.withOpacity(0.1),
onTertiaryContainer: AppColors.accentLight,
error: AppColors.errorLight,
errorContainer: AppColors.errorLight.withOpacity(0.1),
onErrorContainer: AppColors.errorLight,
surface: AppColors.cardLight,
background: AppColors.scaffoldLight,
onBackground: AppColors.textPrimaryLight,
onSurface: AppColors.textPrimaryLight,
onPrimary: AppColors.onPrimaryLight,
onSecondary: Colors.white,
onError: Colors.white,
),
textTheme: textTheme,
);
}
static ThemeData get darkTheme {
final base = ThemeData.dark();
final textTheme = _buildTextTheme(
base.textTheme,
AppColors.textPrimaryDark,
AppColors.textSecondaryDark,
);
return ThemeData(
brightness: Brightness.dark,
primaryColor: AppColors.primaryDark,
primaryColorDark: AppColors.primaryDark.withOpacity(0.8),
primaryColorLight: AppColors.primaryDark.withOpacity(0.4),
canvasColor: AppColors.scaffoldDark,
scaffoldBackgroundColor: AppColors.scaffoldDark,
cardColor: AppColors.cardDark,
dividerColor: AppColors.dividerDark,
focusColor: AppColors.primaryDark.withOpacity(0.12),
hoverColor: AppColors.primaryDark.withOpacity(0.06),
splashColor: AppColors.primaryDark.withOpacity(0.15),
fontFamily: GoogleFonts.roboto().fontFamily,
// AppBar
appBarTheme: AppBarTheme(
backgroundColor: AppColors.secondaryDark,
elevation: 0,
centerTitle: false,
iconTheme: const IconThemeData(color: AppColors.textPrimaryDark),
titleTextStyle: GoogleFonts.roboto(
fontSize: 18,
fontWeight: FontWeight.w600,
color: AppColors.textPrimaryDark,
),
toolbarHeight: 56,
shadowColor: Colors.black.withOpacity(0.2),
),
// Buttons
elevatedButtonTheme: ElevatedButtonThemeData(
style: _buildButtonStyle(
backgroundColor: AppColors.primaryDark,
foregroundColor: AppColors.onPrimaryDark,
),
),
outlinedButtonTheme: OutlinedButtonThemeData(
style: _buildButtonStyle(
backgroundColor: Colors.transparent,
foregroundColor: AppColors.primaryDark,
borderColor: AppColors.primaryDark,
),
),
textButtonTheme: TextButtonThemeData(
style: ButtonStyle(
foregroundColor: MaterialStateProperty.all<Color>(AppColors.primaryDark),
textStyle: MaterialStateProperty.all<TextStyle>(
GoogleFonts.roboto(fontWeight: FontWeight.w600),
),
shape: MaterialStateProperty.all<RoundedRectangleBorder>(
RoundedRectangleBorder(borderRadius: BorderRadius.circular(AppDimensions.sm)),
),
overlayColor: MaterialStateProperty.all<Color>(
AppColors.primaryDark.withOpacity(0.15),
),
),
),
// Card
cardTheme: CardTheme(
color: AppColors.cardDark,
elevation: 2,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(AppDimensions.cardRadius),
),
shadowColor: Colors.black.withOpacity(0.3),
),
// Inputs
inputDecorationTheme: InputDecorationTheme(
filled: true,
fillColor: AppColors.textFieldDark,
contentPadding: const EdgeInsets.symmetric(
horizontal: AppDimensions.md,
vertical: AppDimensions.md,
),
hintStyle: GoogleFonts.roboto(
color: AppColors.textTertiaryDark,
fontSize: 14,
),
labelStyle: GoogleFonts.roboto(
color: AppColors.textSecondaryDark,
fontSize: 14,
),
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(AppDimensions.textFieldRadius),
borderSide: BorderSide.none,
),
enabledBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(AppDimensions.textFieldRadius),
borderSide: BorderSide.none,
),
focusedBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(AppDimensions.textFieldRadius),
borderSide: const BorderSide(color: AppColors.primaryDark, width: 1.5),
),
errorBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(AppDimensions.textFieldRadius),
borderSide: const BorderSide(color: AppColors.errorDark, width: 1.5),
),
focusedErrorBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(AppDimensions.textFieldRadius),
borderSide: const BorderSide(color: AppColors.errorDark, width: 1.5),
),
prefixIconColor: AppColors.textSecondaryDark,
suffixIconColor: AppColors.textSecondaryDark,
),
// Checkbox & Toggle
checkboxTheme: CheckboxThemeData(
fillColor: MaterialStateProperty.resolveWith<Color>((states) {
if (states.contains(MaterialState.disabled)) {
return AppColors.textTertiaryDark;
}
if (states.contains(MaterialState.selected)) {
return AppColors.primaryDark;
}
return Colors.transparent;
}),
side: const BorderSide(width: 1.5, color: AppColors.textSecondaryDark),
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(3)),
),
switchTheme: SwitchThemeData(
thumbColor: MaterialStateProperty.resolveWith<Color>((states) {
if (states.contains(MaterialState.disabled)) {
return AppColors.textTertiaryDark;
}
if (states.contains(MaterialState.selected)) {
return AppColors.primaryDark;
}
return Colors.white;
}),
trackColor: MaterialStateProperty.resolveWith<Color>((states) {
if (states.contains(MaterialState.disabled)) {
return AppColors.dividerDark;
}
if (states.contains(MaterialState.selected)) {
return AppColors.primaryDark.withOpacity(0.4);
}
return AppColors.textTertiaryDark;
}),
),
// Chip
chipTheme: ChipThemeData(
backgroundColor: AppColors.primaryDark.withOpacity(0.12),
disabledColor: AppColors.dividerDark,
selectedColor: AppColors.primaryDark.withOpacity(0.25),
labelStyle: GoogleFonts.roboto(
fontSize: 12,
color: AppColors.textPrimaryDark,
),
secondaryLabelStyle: GoogleFonts.roboto(
fontSize: 12,
color: AppColors.primaryDark,
fontWeight: FontWeight.w500,
),
padding: const EdgeInsets.symmetric(
horizontal: AppDimensions.md,
vertical: AppDimensions.xs,
),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(AppDimensions.sm),
),
),
// Dialogs & Bottom Sheets
dialogTheme: DialogTheme(
backgroundColor: AppColors.cardDark,
elevation: 3,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(AppDimensions.lg),
),
),
bottomSheetTheme: const BottomSheetThemeData(
backgroundColor: AppColors.cardDark,
elevation: 8,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.only(
topLeft: Radius.circular(AppDimensions.xl),
topRight: Radius.circular(AppDimensions.xl),
),
),
),
// Progress Indicators
progressIndicatorTheme: const ProgressIndicatorThemeData(
color: AppColors.primaryDark,
linearTrackColor: AppColors.dividerDark,
refreshBackgroundColor: AppColors.dividerDark,
),
// Color Scheme
colorScheme: ColorScheme.dark(
primary: AppColors.primaryDark,
primaryContainer: AppColors.primaryDark.withOpacity(0.15),
onPrimaryContainer: AppColors.primaryDark,
secondary: AppColors.secondaryDark,
secondaryContainer: AppColors.secondaryDark.withOpacity(0.1),
onSecondaryContainer: AppColors.textPrimaryDark,
tertiary: AppColors.accentDark,
tertiaryContainer: AppColors.accentDark.withOpacity(0.1),
onTertiaryContainer: AppColors.accentDark,
error: AppColors.errorDark,
errorContainer: AppColors.errorDark.withOpacity(0.1),
onErrorContainer: AppColors.errorDark,
surface: AppColors.cardDark,
background: AppColors.scaffoldDark,
onBackground: AppColors.textPrimaryDark,
onSurface: AppColors.textPrimaryDark,
onPrimary: AppColors.onPrimaryDark,
onSecondary: AppColors.textPrimaryDark,
onError: Colors.black,
),
textTheme: textTheme,
);
}
}

31
lib/vx_lib.txt Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,52 @@
import 'package:flutter/material.dart';
class EmptyStateWidget extends StatelessWidget {
final IconData icon;
final String message;
final String? actionButtonText;
final VoidCallback? onActionButtonPressed;
const EmptyStateWidget({
super.key,
required this.icon,
required this.message,
this.actionButtonText,
this.onActionButtonPressed,
});
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
return Center(
child: Padding(
padding: const EdgeInsets.all(20.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Icon(
icon,
size: 80,
color: theme.textTheme.bodySmall?.color?.withOpacity(0.6),
),
const SizedBox(height: 20),
Text(
message,
textAlign: TextAlign.center,
style: theme.textTheme.titleLarge?.copyWith(
color: theme.textTheme.bodyMedium?.color?.withOpacity(0.8),
),
),
if (actionButtonText != null && onActionButtonPressed != null) ...[
const SizedBox(height: 24),
ElevatedButton(
onPressed: onActionButtonPressed,
child: Text(actionButtonText!),
),
]
],
),
),
);
}
}

View File

@ -0,0 +1,182 @@
import 'package:flutter/material.dart';
import '../models/product_model.dart';
import '../services/cart_service.dart'; // Added
/// An improved ProductCard widget that works with the enhanced theme system
/// - More efficient layout with better organization
/// - Uses semantic theme properties for consistent styling
/// - Responsive design with flexible sizing
class ProductCard extends StatelessWidget {
final Product product;
// final VoidCallback? onAddToCart; // Removed
const ProductCard({
super.key,
required this.product,
// this.onAddToCart, // Removed
});
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
final colorScheme = theme.colorScheme;
return Card(
clipBehavior: Clip.antiAlias,
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
_buildProductImage(context),
Expanded(
child: Padding(
padding: const EdgeInsets.all(5.0),
child: _buildProductDetails(context),
),
),
],
),
);
}
Widget _buildProductImage(BuildContext context) {
return AspectRatio(
aspectRatio: 3 / 2, // Adjusted for potentially taller cards. Original 16/10 or 3/2
child: Stack(
fit: StackFit.expand,
children: [
Image.network(
product.imageUrl,
fit: BoxFit.cover,
loadingBuilder: _imageLoadingBuilder,
errorBuilder: _imageErrorBuilder,
),
Positioned(
top: 8,
right: 8,
child: _buildCategoryBadge(context),
),
],
),
);
}
Widget _buildCategoryBadge(BuildContext context) {
final theme = Theme.of(context);
final colorScheme = theme.colorScheme;
return Container(
padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 4),
decoration: BoxDecoration(
color: colorScheme.secondaryContainer.withOpacity(0.85),
borderRadius: BorderRadius.circular(4),
),
child: Text(
product.category,
style: theme.textTheme.labelSmall?.copyWith(
color: Color(0xFFFFFFFF),
fontWeight: FontWeight.w500,
),
),
);
}
Widget _buildProductDetails(BuildContext context) {
return Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
product.name,
style: Theme.of(context).textTheme.titleMedium,
maxLines: 1, // Changed to 1 for consistency, can be 2 if design allows
overflow: TextOverflow.ellipsis,
),
const SizedBox(height: 10),
Text(
product.description,
style: Theme.of(context).textTheme.bodySmall,
maxLines: 2, // Can be adjusted
overflow: TextOverflow.ellipsis,
),
const Spacer(),
const SizedBox(height: 14),
_buildPriceAndAction(context),
],
);
}
Widget _buildPriceAndAction(BuildContext context) {
final theme = Theme.of(context);
return Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween, // Ensures spacing
children: [
Text(
'\$${product.price.toStringAsFixed(2)}',
style: theme.textTheme.titleMedium?.copyWith(
color: theme.colorScheme.primary,
fontWeight: FontWeight.bold,
),
),
// const Spacer(), // Removed as MainAxisAlignment.spaceBetween handles it
_buildAddToCartButton(context),
],
);
}
Widget _buildAddToCartButton(BuildContext context) {
return IconButton(
onPressed: () => _handleAddToCart(context),
icon: const Icon(Icons.add_shopping_cart_outlined),
style: IconButton.styleFrom(
backgroundColor: Theme.of(context).colorScheme.primary.withOpacity(0.1),
foregroundColor: Theme.of(context).colorScheme.primary,
),
tooltip: 'Add to cart',
);
}
void _handleAddToCart(BuildContext context) {
final cartService = CartService(); // Get singleton instance
cartService.addItem(product);
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text('${product.name} added to cart'),
duration: const Duration(seconds: 2),
action: SnackBarAction(
label: 'VIEW CART',
onPressed: () {
Navigator.pushNamed(context, '/cart');
},
),
),
);
}
Widget _imageLoadingBuilder(
BuildContext context, Widget child, ImageChunkEvent? loadingProgress) {
if (loadingProgress == null) return child;
return Center(
child: CircularProgressIndicator(
value: loadingProgress.expectedTotalBytes != null
? loadingProgress.cumulativeBytesLoaded /
loadingProgress.expectedTotalBytes!
: null,
strokeWidth: 2.0,
color: Theme.of(context).colorScheme.primary,
),
);
}
Widget _imageErrorBuilder(
BuildContext context, Object exception, StackTrace? stackTrace) {
final theme = Theme.of(context);
return Container(
color: theme.colorScheme.surfaceVariant, // Or surface.withOpacity(0.1)
child: Center(
child: Icon(
Icons.broken_image_outlined,
size: 40,
color: theme.colorScheme.onSurfaceVariant.withOpacity(0.6),
),
),
);
}
}

1
linux/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
flutter/ephemeral

128
linux/CMakeLists.txt Normal file
View File

@ -0,0 +1,128 @@
# Project-level configuration.
cmake_minimum_required(VERSION 3.13)
project(runner LANGUAGES CXX)
# The name of the executable created for the application. Change this to change
# the on-disk name of your application.
set(BINARY_NAME "login_app")
# The unique GTK application identifier for this application. See:
# https://wiki.gnome.org/HowDoI/ChooseApplicationID
set(APPLICATION_ID "com.example.login_app")
# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
# versions of CMake.
cmake_policy(SET CMP0063 NEW)
# Load bundled libraries from the lib/ directory relative to the binary.
set(CMAKE_INSTALL_RPATH "$ORIGIN/lib")
# Root filesystem for cross-building.
if(FLUTTER_TARGET_PLATFORM_SYSROOT)
set(CMAKE_SYSROOT ${FLUTTER_TARGET_PLATFORM_SYSROOT})
set(CMAKE_FIND_ROOT_PATH ${CMAKE_SYSROOT})
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
endif()
# Define build configuration options.
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
set(CMAKE_BUILD_TYPE "Debug" CACHE
STRING "Flutter build mode" FORCE)
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS
"Debug" "Profile" "Release")
endif()
# Compilation settings that should be applied to most targets.
#
# Be cautious about adding new options here, as plugins use this function by
# default. In most cases, you should add new options to specific targets instead
# of modifying this function.
function(APPLY_STANDARD_SETTINGS TARGET)
target_compile_features(${TARGET} PUBLIC cxx_std_14)
target_compile_options(${TARGET} PRIVATE -Wall -Werror)
target_compile_options(${TARGET} PRIVATE "$<$<NOT:$<CONFIG:Debug>>:-O3>")
target_compile_definitions(${TARGET} PRIVATE "$<$<NOT:$<CONFIG:Debug>>:NDEBUG>")
endfunction()
# Flutter library and tool build rules.
set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter")
add_subdirectory(${FLUTTER_MANAGED_DIR})
# System-level dependencies.
find_package(PkgConfig REQUIRED)
pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0)
# Application build; see runner/CMakeLists.txt.
add_subdirectory("runner")
# Run the Flutter tool portions of the build. This must not be removed.
add_dependencies(${BINARY_NAME} flutter_assemble)
# Only the install-generated bundle's copy of the executable will launch
# correctly, since the resources must in the right relative locations. To avoid
# people trying to run the unbundled copy, put it in a subdirectory instead of
# the default top-level location.
set_target_properties(${BINARY_NAME}
PROPERTIES
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/intermediates_do_not_run"
)
# Generated plugin build rules, which manage building the plugins and adding
# them to the application.
include(flutter/generated_plugins.cmake)
# === Installation ===
# By default, "installing" just makes a relocatable bundle in the build
# directory.
set(BUILD_BUNDLE_DIR "${PROJECT_BINARY_DIR}/bundle")
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE)
endif()
# Start with a clean build bundle directory every time.
install(CODE "
file(REMOVE_RECURSE \"${BUILD_BUNDLE_DIR}/\")
" COMPONENT Runtime)
set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data")
set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}/lib")
install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}"
COMPONENT Runtime)
install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}"
COMPONENT Runtime)
install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
COMPONENT Runtime)
foreach(bundled_library ${PLUGIN_BUNDLED_LIBRARIES})
install(FILES "${bundled_library}"
DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
COMPONENT Runtime)
endforeach(bundled_library)
# Copy the native assets provided by the build.dart from all packages.
set(NATIVE_ASSETS_DIR "${PROJECT_BUILD_DIR}native_assets/linux/")
install(DIRECTORY "${NATIVE_ASSETS_DIR}"
DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
COMPONENT Runtime)
# Fully re-copy the assets directory on each build to avoid having stale files
# from a previous install.
set(FLUTTER_ASSET_DIR_NAME "flutter_assets")
install(CODE "
file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\")
" COMPONENT Runtime)
install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}"
DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime)
# Install the AOT library on non-Debug builds only.
if(NOT CMAKE_BUILD_TYPE MATCHES "Debug")
install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
COMPONENT Runtime)
endif()

View File

@ -0,0 +1,88 @@
# This file controls Flutter-level build steps. It should not be edited.
cmake_minimum_required(VERSION 3.10)
set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral")
# Configuration provided via flutter tool.
include(${EPHEMERAL_DIR}/generated_config.cmake)
# TODO: Move the rest of this into files in ephemeral. See
# https://github.com/flutter/flutter/issues/57146.
# Serves the same purpose as list(TRANSFORM ... PREPEND ...),
# which isn't available in 3.10.
function(list_prepend LIST_NAME PREFIX)
set(NEW_LIST "")
foreach(element ${${LIST_NAME}})
list(APPEND NEW_LIST "${PREFIX}${element}")
endforeach(element)
set(${LIST_NAME} "${NEW_LIST}" PARENT_SCOPE)
endfunction()
# === Flutter Library ===
# System-level dependencies.
find_package(PkgConfig REQUIRED)
pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0)
pkg_check_modules(GLIB REQUIRED IMPORTED_TARGET glib-2.0)
pkg_check_modules(GIO REQUIRED IMPORTED_TARGET gio-2.0)
set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/libflutter_linux_gtk.so")
# Published to parent scope for install step.
set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE)
set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE)
set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE)
set(AOT_LIBRARY "${PROJECT_DIR}/build/lib/libapp.so" PARENT_SCOPE)
list(APPEND FLUTTER_LIBRARY_HEADERS
"fl_basic_message_channel.h"
"fl_binary_codec.h"
"fl_binary_messenger.h"
"fl_dart_project.h"
"fl_engine.h"
"fl_json_message_codec.h"
"fl_json_method_codec.h"
"fl_message_codec.h"
"fl_method_call.h"
"fl_method_channel.h"
"fl_method_codec.h"
"fl_method_response.h"
"fl_plugin_registrar.h"
"fl_plugin_registry.h"
"fl_standard_message_codec.h"
"fl_standard_method_codec.h"
"fl_string_codec.h"
"fl_value.h"
"fl_view.h"
"flutter_linux.h"
)
list_prepend(FLUTTER_LIBRARY_HEADERS "${EPHEMERAL_DIR}/flutter_linux/")
add_library(flutter INTERFACE)
target_include_directories(flutter INTERFACE
"${EPHEMERAL_DIR}"
)
target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}")
target_link_libraries(flutter INTERFACE
PkgConfig::GTK
PkgConfig::GLIB
PkgConfig::GIO
)
add_dependencies(flutter flutter_assemble)
# === Flutter tool backend ===
# _phony_ is a non-existent file to force this command to run every time,
# since currently there's no way to get a full input/output list from the
# flutter tool.
add_custom_command(
OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS}
${CMAKE_CURRENT_BINARY_DIR}/_phony_
COMMAND ${CMAKE_COMMAND} -E env
${FLUTTER_TOOL_ENVIRONMENT}
"${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.sh"
${FLUTTER_TARGET_PLATFORM} ${CMAKE_BUILD_TYPE}
VERBATIM
)
add_custom_target(flutter_assemble DEPENDS
"${FLUTTER_LIBRARY}"
${FLUTTER_LIBRARY_HEADERS}
)

Some files were not shown because too many files have changed in this diff Show More