upload source code TA

This commit is contained in:
IchaAulia12 2024-06-24 09:56:58 +07:00
commit 49c91dc1a9
158 changed files with 7809 additions and 0 deletions

43
.gitignore vendored Normal file
View File

@ -0,0 +1,43 @@
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
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: "300451adae589accbece3490f4396f10bdf15e6e"
channel: "stable"
project_type: app
# Tracks metadata for the flutter migrate command
migration:
platforms:
- platform: root
create_revision: 300451adae589accbece3490f4396f10bdf15e6e
base_revision: 300451adae589accbece3490f4396f10bdf15e6e
- platform: android
create_revision: 300451adae589accbece3490f4396f10bdf15e6e
base_revision: 300451adae589accbece3490f4396f10bdf15e6e
- platform: ios
create_revision: 300451adae589accbece3490f4396f10bdf15e6e
base_revision: 300451adae589accbece3490f4396f10bdf15e6e
- platform: linux
create_revision: 300451adae589accbece3490f4396f10bdf15e6e
base_revision: 300451adae589accbece3490f4396f10bdf15e6e
- platform: macos
create_revision: 300451adae589accbece3490f4396f10bdf15e6e
base_revision: 300451adae589accbece3490f4396f10bdf15e6e
- platform: web
create_revision: 300451adae589accbece3490f4396f10bdf15e6e
base_revision: 300451adae589accbece3490f4396f10bdf15e6e
- platform: windows
create_revision: 300451adae589accbece3490f4396f10bdf15e6e
base_revision: 300451adae589accbece3490f4396f10bdf15e6e
# 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 @@
# e_commerce
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

13
android/.gitignore vendored Normal file
View File

@ -0,0 +1,13 @@
gradle-wrapper.jar
/.gradle
/captures/
/gradlew
/gradlew.bat
/local.properties
GeneratedPluginRegistrant.java
# Remember to never publicly share your keystore.
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
key.properties
**/*.keystore
**/*.jks

71
android/app/build.gradle Normal file
View File

@ -0,0 +1,71 @@
plugins {
id "com.android.application"
// START: FlutterFire Configuration
id 'com.google.gms.google-services'
// END: FlutterFire Configuration
id "kotlin-android"
id "dev.flutter.flutter-gradle-plugin"
}
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
android {
namespace "com.example.e_commerce"
compileSdk flutter.compileSdkVersion
ndkVersion flutter.ndkVersion
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.example.e_commerce"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
minSdkVersion flutter.minSdkVersion
multiDexEnabled true
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
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.debug
}
}
}
flutter {
source '../..'
}
dependencies {}

View File

@ -0,0 +1,40 @@
{
"project_info": {
"project_number": "17392164256",
"firebase_url": "https://rayhan-firebase-34c0f-default-rtdb.asia-southeast1.firebasedatabase.app",
"project_id": "rayhan-firebase-34c0f",
"storage_bucket": "rayhan-firebase-34c0f.appspot.com"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:17392164256:android:ab8ee4454771b5bd5d98c5",
"android_client_info": {
"package_name": "com.example.e_commerce"
}
},
"oauth_client": [
{
"client_id": "17392164256-po72i7lvvjglbkiv2fit31rvm76gscmg.apps.googleusercontent.com",
"client_type": 3
}
],
"api_key": [
{
"current_key": "AIzaSyD2GcJuMtR65kWPd3PczYek7MKSEyh4OtA"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": [
{
"client_id": "17392164256-po72i7lvvjglbkiv2fit31rvm76gscmg.apps.googleusercontent.com",
"client_type": 3
}
]
}
}
}
],
"configuration_version": "1"
}

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,53 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
<uses-permission android:name="ANDROID.PERMISSION.INTERNET" />
<application
android:label="e_commerce"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
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?hl=en 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>
<intent>
<action android:name="android.support.customtabs.action.CustomTabsService" />
</intent>
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="https" />
</intent>
</queries>
</manifest>

View File

@ -0,0 +1,5 @@
package com.example.e_commerce
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>

18
android/build.gradle Normal file
View File

@ -0,0 +1,18 @@
allprojects {
repositories {
google()
mavenCentral()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
}

View File

@ -0,0 +1,3 @@
org.gradle.jvmargs=-Xmx4G
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-7.6.3-all.zip

29
android/settings.gradle Normal file
View File

@ -0,0 +1,29 @@
pluginManagement {
def flutterSdkPath = {
def properties = new Properties()
file("local.properties").withInputStream { properties.load(it) }
def flutterSdkPath = properties.getProperty("flutter.sdk")
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
return flutterSdkPath
}
settings.ext.flutterSdkPath = flutterSdkPath()
includeBuild("${settings.ext.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 "7.3.0" apply false
// START: FlutterFire Configuration
id "com.google.gms.google-services" version "4.3.15" apply false
// END: FlutterFire Configuration
id "org.jetbrains.kotlin.android" version "1.7.10" apply false
}
include ":app"

BIN
assets/1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

BIN
assets/2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

BIN
assets/3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

BIN
assets/4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

BIN
assets/5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

BIN
assets/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

12
config.json Normal file
View File

@ -0,0 +1,12 @@
{
"modules": [],
"module_directory_name": "module",
"experimental_mode": false,
"learning_mode": false,
"unfreezed": true,
"use_cubit": false,
"ignore_core_generator_for_directories": [
"lib/model",
"lib/models"
]
}

1
firebase.json Normal file
View File

@ -0,0 +1 @@
{"flutter":{"platforms":{"android":{"default":{"projectId":"rayhan-firebase-34c0f","appId":"1:17392164256:android:ab8ee4454771b5bd5d98c5","fileOutput":"android/app/google-services.json"}},"dart":{"lib/firebase_options.dart":{"projectId":"rayhan-firebase-34c0f","configurations":{"android":"1:17392164256:android:ab8ee4454771b5bd5d98c5","ios":"1:17392164256:ios:662ec12ec31294f55d98c5","macos":"1:17392164256:ios:662ec12ec31294f55d98c5","web":"1:17392164256:web:7ef1b06cd07a137b5d98c5","windows":"1:17392164256:web:909b38cd245235715d98c5"}}}}}}

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.eCommerce;
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.eCommerce.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.eCommerce.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.eCommerce.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.eCommerce;
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.eCommerce;
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,98 @@
<?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"
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 UIKit
import Flutter
@UIApplicationMain
@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>E Commerce</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>e_commerce</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.
}
}

5
lib/const/AppColors.dart Normal file
View File

@ -0,0 +1,5 @@
import 'package:flutter/cupertino.dart';
class AppColors {
static const Color deep_orange = Color(0xFF000080);
}

12
lib/const/rupiah.dart Normal file
View File

@ -0,0 +1,12 @@
import 'package:intl/intl.dart';
extension IntExtensions on int {
String toRupiah() {
final formatCurrency = NumberFormat.currency(locale: "id-ID");
String formattedCurrency = "Rp ${formatCurrency.format(this).substring(3)}";
return formattedCurrency.substring(0, formattedCurrency.indexOf(','));
}
}

91
lib/firebase_options.dart Normal file
View File

@ -0,0 +1,91 @@
// File generated by FlutterFire CLI.
// ignore_for_file: type=lint
import 'package:firebase_core/firebase_core.dart' show FirebaseOptions;
import 'package:flutter/foundation.dart'
show defaultTargetPlatform, kIsWeb, TargetPlatform;
/// Default [FirebaseOptions] for use with your Firebase apps.
///
/// Example:
/// ```dart
/// import 'firebase_options.dart';
/// // ...
/// await Firebase.initializeApp(
/// options: DefaultFirebaseOptions.currentPlatform,
/// );
/// ```
class DefaultFirebaseOptions {
static FirebaseOptions get currentPlatform {
if (kIsWeb) {
return web;
}
switch (defaultTargetPlatform) {
case TargetPlatform.android:
return android;
case TargetPlatform.iOS:
return ios;
case TargetPlatform.macOS:
return macos;
case TargetPlatform.windows:
return windows;
case TargetPlatform.linux:
throw UnsupportedError(
'DefaultFirebaseOptions have not been configured for linux - '
'you can reconfigure this by running the FlutterFire CLI again.',
);
default:
throw UnsupportedError(
'DefaultFirebaseOptions are not supported for this platform.',
);
}
}
static const FirebaseOptions web = FirebaseOptions(
apiKey: 'AIzaSyAvFExOa5Iq-FkkxpO-39BeTJa8sMT-gZc',
appId: '1:17392164256:web:7ef1b06cd07a137b5d98c5',
messagingSenderId: '17392164256',
projectId: 'rayhan-firebase-34c0f',
authDomain: 'rayhan-firebase-34c0f.firebaseapp.com',
databaseURL: 'https://rayhan-firebase-34c0f-default-rtdb.asia-southeast1.firebasedatabase.app',
storageBucket: 'rayhan-firebase-34c0f.appspot.com',
);
static const FirebaseOptions android = FirebaseOptions(
apiKey: 'AIzaSyD2GcJuMtR65kWPd3PczYek7MKSEyh4OtA',
appId: '1:17392164256:android:ab8ee4454771b5bd5d98c5',
messagingSenderId: '17392164256',
projectId: 'rayhan-firebase-34c0f',
databaseURL: 'https://rayhan-firebase-34c0f-default-rtdb.asia-southeast1.firebasedatabase.app',
storageBucket: 'rayhan-firebase-34c0f.appspot.com',
);
static const FirebaseOptions ios = FirebaseOptions(
apiKey: 'AIzaSyAVodfRHM-tYpTU6zPJCL-GjMUFqLEJw04',
appId: '1:17392164256:ios:662ec12ec31294f55d98c5',
messagingSenderId: '17392164256',
projectId: 'rayhan-firebase-34c0f',
databaseURL: 'https://rayhan-firebase-34c0f-default-rtdb.asia-southeast1.firebasedatabase.app',
storageBucket: 'rayhan-firebase-34c0f.appspot.com',
iosBundleId: 'com.example.eCommerce',
);
static const FirebaseOptions macos = FirebaseOptions(
apiKey: 'AIzaSyAVodfRHM-tYpTU6zPJCL-GjMUFqLEJw04',
appId: '1:17392164256:ios:662ec12ec31294f55d98c5',
messagingSenderId: '17392164256',
projectId: 'rayhan-firebase-34c0f',
databaseURL: 'https://rayhan-firebase-34c0f-default-rtdb.asia-southeast1.firebasedatabase.app',
storageBucket: 'rayhan-firebase-34c0f.appspot.com',
iosBundleId: 'com.example.eCommerce',
);
static const FirebaseOptions windows = FirebaseOptions(
apiKey: 'AIzaSyAvFExOa5Iq-FkkxpO-39BeTJa8sMT-gZc',
appId: '1:17392164256:web:909b38cd245235715d98c5',
messagingSenderId: '17392164256',
projectId: 'rayhan-firebase-34c0f',
authDomain: 'rayhan-firebase-34c0f.firebaseapp.com',
databaseURL: 'https://rayhan-firebase-34c0f-default-rtdb.asia-southeast1.firebasedatabase.app',
storageBucket: 'rayhan-firebase-34c0f.appspot.com',
);
}

40
lib/main.dart Normal file
View File

@ -0,0 +1,40 @@
import 'package:e_commerce/firebase_options.dart';
import 'package:e_commerce/ui/splash_screen.dart';
import 'package:firebase_core/firebase_core.dart';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
await Firebase.initializeApp(
options: DefaultFirebaseOptions.currentPlatform,
);
runApp(
MyApp(),
);
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return ScreenUtilInit(
designSize: const Size(375, 812),
minTextAdapt: true,
splitScreenMode: true,
builder: (context, child) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Flutter PojokTI',
theme: ThemeData(
primarySwatch: Colors.blue,
visualDensity: VisualDensity
.adaptivePlatformDensity, // Adjust for different platforms
),
home: child,
);
},
child: SplashScreen(), // SplashScreen as child
);
}
}

View File

@ -0,0 +1,111 @@
import 'package:e_commerce/const/AppColors.dart';
import 'package:e_commerce/ui/bottom_nav_pages/cart.dart';
import 'package:e_commerce/ui/bottom_nav_pages/favourite.dart';
import 'package:e_commerce/ui/bottom_nav_pages/home.dart';
import 'package:e_commerce/ui/bottom_nav_pages/profile.dart';
import 'package:e_commerce/ui/login_screen.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
class BottomNavController extends StatefulWidget {
@override
_BottomNavControllerState createState() => _BottomNavControllerState();
}
class _BottomNavControllerState extends State<BottomNavController> {
final _pages = [
Home(),
Favourite(),
Cart(),
Profile(),
];
var _currentIndex = 0;
DateTime? lastBackPressTime;
@override
Widget build(BuildContext context) {
Future<bool> onWillPop() async {
DateTime now = DateTime.now();
if (lastBackPressTime == null ||
now.difference(lastBackPressTime!) > Duration(seconds: 1)) {
lastBackPressTime = now;
return Future.value(true); // Allow back press
} else {
return showDialog(
context: context,
builder: (context) {
return AlertDialog(
title: Text("Konfirmasi"),
content: Text("Apakah Anda yakin ingin keluar?"),
actions: [
TextButton(
onPressed: () {
Navigator.of(context).pop(false); // Cancel action
},
child: Text("Batal"),
),
TextButton(
onPressed: () {
Navigator.pushReplacement(
context,
CupertinoPageRoute(
builder: (context) => LoginScreen()));
},
child: Text("Keluar"),
),
],
);
},
).then((value) => value ?? false); // If no response, default to false
}
}
return WillPopScope(
onWillPop: onWillPop,
child: Scaffold(
appBar: AppBar(
backgroundColor: Colors.transparent,
elevation: 0,
title: Text(
"PojokTI",
style: TextStyle(color: Colors.black),
),
centerTitle: true,
automaticallyImplyLeading: false,
),
bottomNavigationBar: BottomNavigationBar(
elevation: 5,
selectedItemColor: AppColors.deep_orange,
backgroundColor: Colors.white,
unselectedItemColor: Colors.grey,
currentIndex: _currentIndex,
selectedLabelStyle:
TextStyle(color: Colors.black, fontWeight: FontWeight.bold),
items: [
BottomNavigationBarItem(
icon: Icon(Icons.home),
label: "Home",
),
BottomNavigationBarItem(
icon: Icon(Icons.favorite_outline), label: "Favourite"),
BottomNavigationBarItem(
icon: Icon(Icons.add_shopping_cart),
label: "Cart",
),
BottomNavigationBarItem(
icon: Icon(Icons.person),
label: "Person",
),
],
onTap: (index) {
setState(() {
_currentIndex = index;
print(_currentIndex);
});
},
),
body: _pages[_currentIndex],
),
);
}
}

View File

@ -0,0 +1,55 @@
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:e_commerce/const/AppColors.dart';
import 'package:e_commerce/ui/detail_order.dart';
import 'package:e_commerce/widgets/fetchProducts.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
class Cart extends StatefulWidget {
@override
_CartState createState() => _CartState();
}
class _CartState extends State<Cart> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: SafeArea(
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Column(
children: [
Container(
height: MediaQuery.of(context).size.height / 1.5,
decoration: const BoxDecoration(
color: Colors.white,
),
child: fetchData("users-cart-items"),
),
const SizedBox(
height: 10.0,
),
ElevatedButton(
style: ElevatedButton.styleFrom(
backgroundColor: AppColors.deep_orange,
shape: ContinuousRectangleBorder(
borderRadius: BorderRadius.circular(10.0),
),
),
onPressed: () {
Navigator.push(context,
CupertinoPageRoute(builder: (_) => detail_order()));
},
child: const Text(
"Order Now",
style: TextStyle(fontSize: 16, color: Colors.white),
),
),
],
),
),
),
);
}
}

View File

@ -0,0 +1,20 @@
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:e_commerce/widgets/fetchProducts.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/material.dart';
class Favourite extends StatefulWidget {
@override
_FavouriteState createState() => _FavouriteState();
}
class _FavouriteState extends State<Favourite> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: SafeArea(
child: fetchData("users-favourite-items"),
),
);
}
}

View File

@ -0,0 +1,173 @@
import 'package:carousel_slider/carousel_options.dart';
import 'package:carousel_slider/carousel_slider.dart';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:dots_indicator/dots_indicator.dart';
import 'package:e_commerce/const/AppColors.dart';
import 'package:e_commerce/const/rupiah.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:google_fonts/google_fonts.dart';
import '../product_details_screen.dart';
import '../search_screen.dart';
class Home extends StatefulWidget {
@override
_HomeState createState() => _HomeState();
}
class _HomeState extends State<Home> {
List<String> _carouselImages = [];
var _dotPosition = 0;
List _products = [];
var _firestoreInstance = FirebaseFirestore.instance;
// Validasi URL untuk memastikan URL valid
bool isValidUrl(String url) {
try {
Uri uri = Uri.parse(url);
return uri.hasScheme && (uri.scheme == 'http' || uri.scheme == 'https');
} catch (e) {
return false;
}
}
fetchCarouselImages() async {
QuerySnapshot qn = await _firestoreInstance.collection("carousel-slider").get();
List<String> carouselImages = qn.docs.map((doc) => doc["img-path"].toString()).toList();
// Tambahkan gambar produk ke daftar carousel
_products.forEach((product) {
_carouselImages.addAll(product["product-img"]); // Menambahkan semua gambar produk ke carousel
});
setState(() {
_carouselImages = carouselImages; // Memperbarui daftar carousel dengan gambar baru
});
}
fetchProducts() async {
QuerySnapshot qn = await _firestoreInstance.collection("products").get();
setState(() {
_products = qn.docs.map((doc) {
return {
"product-name": doc["product-name"],
"product-description": doc["product-description"],
"product-price": doc["product-price"],
"stock": doc["stock"],
"product-img": isValidUrl(doc["product-img"]) ? [doc["product-img"]] : ["https://via.placeholder.com/150"],
};
}).toList();
});
}
@override
void initState() {
fetchCarouselImages();
fetchProducts();
super.initState();
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: SafeArea(
child: Container(
child: Column(
children: [
Padding(
padding: EdgeInsets.only(left: 20.w, right: 20.w),
child: TextFormField(
readOnly: true,
decoration: InputDecoration(
fillColor: Colors.white,
focusedBorder: OutlineInputBorder(borderRadius: BorderRadius.all(Radius.circular(0)), borderSide: BorderSide(color: Colors.blue)),
enabledBorder: OutlineInputBorder(borderRadius: BorderRadius.all(Radius.circular(0)), borderSide: BorderSide(color: Colors.grey)),
hintText: "Search products here",
hintStyle: TextStyle(fontSize: 15.sp),
),
onTap: () => Navigator.push(context, CupertinoPageRoute(builder: (_) => SearchScreen())),
),
),
SizedBox(
height: 10.h,
),
Expanded(
child: GridView.builder(
scrollDirection: Axis.vertical,
itemCount: _products.length,
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(crossAxisCount: 2, childAspectRatio: 1),
itemBuilder: (_, index) {
final rupiah = int.parse(_products[index]["product-price"]) ?? 0;
return GestureDetector(
onTap: () async {
Navigator.push(context, MaterialPageRoute(builder: (_) => ProductDetails(_products[index])));
},
child: Container(
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Card(
elevation: 3,
child: Column(
children: [
AspectRatio(
aspectRatio: 2,
child: Container(
child: isValidUrl(_products[index]["product-img"][0])
? Image.network(
_products[index]["product-img"][0],
fit: BoxFit.cover,
)
: Text("Invalid image URL"),
)),
const SizedBox(
height: 10.0,
),
Text(
"${_products[index]["product-name"]}",
style: GoogleFonts.beVietnamPro(
textStyle: const TextStyle(
fontSize: 16,
fontWeight: FontWeight.bold,
),
),
),
const SizedBox(
height: 5.0,
),
Text(
"${rupiah.toRupiah()}",
style: GoogleFonts.beVietnamPro(
textStyle: const TextStyle(
fontSize: 14,
fontWeight: FontWeight.bold,
),
),
),
const SizedBox(
height: 5.0,
),
Text(
"Stok : ${_products[index]['stock']}",
style: GoogleFonts.beVietnamPro(
textStyle: const TextStyle(
fontSize: 10,
fontWeight: FontWeight.normal,
),
),
),
],
),
),
),
),
);
}),
),
],
),
)),
);
}
}

View File

@ -0,0 +1,148 @@
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:e_commerce/const/AppColors.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/material.dart';
import 'package:fluttertoast/fluttertoast.dart';
class Profile extends StatefulWidget {
@override
_ProfileState createState() => _ProfileState();
}
class _ProfileState extends State<Profile> {
TextEditingController? _nameController;
TextEditingController? _phoneController;
TextEditingController? _ageController;
setDataToTextField(data) {
return Column(
children: [
TextField(
style: TextStyle(
fontSize: 14,
),
controller: _nameController =
TextEditingController(text: data['name']),
decoration: InputDecoration(
filled: true,
fillColor: Colors.white,
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(20.0),
borderSide: BorderSide(color: Colors.black),
),
hintText: 'Enter your email',
suffixIcon: const Icon(
Icons.person,
size: 24.0,
),
),
),
const SizedBox(
height: 10.0,
),
TextField(
style: TextStyle(
fontSize: 14,
),
controller: _phoneController =
TextEditingController(text: data['phone']),
decoration: InputDecoration(
filled: true,
fillColor: Colors.white,
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(20.0),
borderSide: BorderSide(color: Colors.black),
),
hintText: 'Enter your phone number',
suffixIcon: const Icon(
Icons.phone,
size: 24.0,
),
),
),
const SizedBox(
height: 10.0,
),
TextField(
style: TextStyle(
fontSize: 14,
),
controller: _ageController = TextEditingController(text: data['age']),
decoration: InputDecoration(
filled: true,
fillColor: Colors.white,
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(20.0),
borderSide: BorderSide(color: Colors.black),
),
hintText: 'Enter your age',
suffixIcon: const Icon(
Icons.person,
size: 24.0,
),
),
),
const SizedBox(
height: 10.0,
),
ElevatedButton(
style: ElevatedButton.styleFrom(
backgroundColor: AppColors.deep_orange,
shape: ContinuousRectangleBorder(
borderRadius: BorderRadius.circular(10.0),
),
),
onPressed: () => updateData(),
child: Text(
"Update",
style: TextStyle(
color: Colors.white,
),
),
),
],
);
}
updateData() {
CollectionReference _collectionRef =
FirebaseFirestore.instance.collection("users-form-data");
return _collectionRef.doc(FirebaseAuth.instance.currentUser!.email).update({
"name": _nameController!.text,
"phone": _phoneController!.text,
"age": _ageController!.text,
}).then((value) => Fluttertoast.showToast(
msg: "Updated Successfully",
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.TOP,
backgroundColor: AppColors.deep_orange,
textColor: Colors.white,
fontSize: 16.0,
));
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: SafeArea(
child: Padding(
padding: const EdgeInsets.all(20.0),
child: StreamBuilder(
stream: FirebaseFirestore.instance
.collection("users-form-data")
.doc(FirebaseAuth.instance.currentUser!.email)
.snapshots(),
builder: (BuildContext context, AsyncSnapshot snapshot) {
var data = snapshot.data;
if (data == null) {
return Center(
child: CircularProgressIndicator(),
);
}
return setDataToTextField(data);
},
),
)),
);
}
}

357
lib/ui/detail_order.dart Normal file
View File

@ -0,0 +1,357 @@
// ignore_for_file: camel_case_types, prefer_typing_uninitialized_variables
import 'dart:convert';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:e_commerce/const/AppColors.dart';
import 'package:e_commerce/const/rupiah.dart';
import 'package:e_commerce/ui/midtrans_pay_screen.dart';
import 'package:e_commerce/widgets/fetch_cart.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:http/http.dart' as http;
class detail_order extends StatefulWidget {
const detail_order({Key? key}) : super(key: key);
@override
State<detail_order> createState() => _detail_orderState();
}
class _detail_orderState extends State<detail_order> {
bool isCod = true;
void payWithMidtrans(QuerySnapshot data, int totalPrice) async {
try {
String orderId = DateTime.now().millisecondsSinceEpoch.toString();
Map<String, dynamic> param = {
'transaction_details': {
'order_id': orderId,
'gross_amount': totalPrice,
},
'credit_card': {
'secure': true,
}
};
final response = await http.post(Uri.parse("https://pojok-ti-be.vercel.app/create/snap"), headers: {'Content-Type': 'application/json'}, body: jsonEncode(param));
final token = response.body;
print(token);
Navigator.push(context, CupertinoPageRoute(builder: (_) => MidtransPay(token: token, snapshot: data)));
} catch (e) {
debugPrint("Error Cuy !!!");
}
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text("Detail Order"),
actions: const [],
),
body: Container(
padding: const EdgeInsets.all(10),
decoration: const BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.only(
topLeft: Radius.circular(20),
topRight: Radius.circular(20),
),
),
child: SingleChildScrollView(
// physics: const NeverScrollableScrollPhysics(),
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
SizedBox(
width: 60,
child: Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(5),
color: Color(0xFFBEBEBE),
),
height: 6,
),
),
Padding(
padding: const EdgeInsets.all(8.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Container(
// height: MediaQuery.of(context).size.width * 1.28,
decoration: BoxDecoration(
color: Colors.white, // warna putihW
borderRadius: BorderRadius.circular(10),
boxShadow: [
BoxShadow(
color: Colors.grey.withOpacity(0.5),
spreadRadius: 2,
blurRadius: 3,
offset: Offset(0, 2),
),
], // rounded border
),
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Column(
children: [
StreamBuilder(
stream: FirebaseFirestore.instance.collection("users-cart-items").doc(FirebaseAuth.instance.currentUser!.email).collection("items").snapshots(),
builder: (BuildContext context, AsyncSnapshot<QuerySnapshot> snapshot) {
if (snapshot.hasError) {
return const Center(
child: Text("Something is wrong"),
);
}
if (snapshot.connectionState == ConnectionState.waiting) {
return const Center(child: CircularProgressIndicator());
}
if (!snapshot.hasData || snapshot.data!.docs.isEmpty) {
return const Center(child: Text("No items in the cart"));
}
final docs = snapshot.data!.docs;
int totalPrice = 0;
docs.forEach((doc) {
final price = int.tryParse(doc['price']) ?? 0;
totalPrice += price;
});
Future<void>? _launched;
final total = totalPrice ?? 0;
// String orderMessage = createOrderMessage(snapshot.data!, totalPrice);
return Padding(
padding: const EdgeInsets.all(8.0),
child: Column(
children: [
SizedBox(
height: MediaQuery.of(context).size.height * 0.50,
// color: Colors.red,
child: ListView.builder(
itemCount: snapshot.data == null ? 0 : snapshot.data!.docs.length,
itemBuilder: (_, index) {
DocumentSnapshot _documentSnapshot = snapshot.data!.docs[index];
final rupiah = int.parse(_documentSnapshot['price']) ?? 0;
return Padding(
padding: const EdgeInsets.only(bottom: 20.0),
child: Container(
color: Colors.white,
child: Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
const SizedBox(
width: 10.0,
),
Container(
width: MediaQuery.of(context).size.width * 0.61, // Misalnya lebar maksimal setengah dari lebar layar
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Container(
width: MediaQuery.of(context).size.width * 0.40,
height: MediaQuery.of(context).size.height * 0.05,
child: Row(
children: [
Text(
"1x",
style: GoogleFonts.beVietnamPro(
textStyle: const TextStyle(
fontSize: 14,
fontWeight: FontWeight.w400,
),
),
),
const SizedBox(
width: 6.0,
),
Flexible(
child: Text(
_documentSnapshot['name'],
style: GoogleFonts.beVietnamPro(
textStyle: const TextStyle(
fontSize: 14,
fontWeight: FontWeight.w400,
),
),
),
)
],
),
),
Text(
"${rupiah.toRupiah()}",
style: GoogleFonts.beVietnamPro(
textStyle: const TextStyle(
fontSize: 14,
fontWeight: FontWeight.w400,
),
),
),
],
),
),
],
),
),
);
}),
),
Divider(
thickness: 1.5,
indent: 8,
endIndent: 8,
),
Container(
// height:
// MediaQuery.of(context).size.height * 0.13,
child: Padding(
padding: const EdgeInsets.all(5.0),
child: Column(
children: [
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text("Sub. Total",
style: GoogleFonts.beVietnamPro(
textStyle: const TextStyle(
fontSize: 14,
fontWeight: FontWeight.w500,
),
)),
Text(
"${total.toRupiah()}",
style: GoogleFonts.beVietnamPro(
textStyle: const TextStyle(
fontSize: 14,
fontWeight: FontWeight.normal,
),
),
),
],
),
const SizedBox(
height: 5.0,
),
const SizedBox(
height: 5.0,
),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
"Pembayaran",
style: GoogleFonts.beVietnamPro(
textStyle: const TextStyle(
fontSize: 14,
fontWeight: FontWeight.w500,
),
),
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
"Cash/Tunai",
style: GoogleFonts.beVietnamPro(
textStyle: const TextStyle(
fontSize: 14,
fontWeight: FontWeight.bold,
),
),
),
Radio(
visualDensity: VisualDensity.compact,
splashRadius: 0,
value: true,
groupValue: isCod,
onChanged: (v) {
isCod = v!;
setState(() {});
},
),
],
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
"Instant",
style: GoogleFonts.beVietnamPro(
textStyle: const TextStyle(
fontSize: 14,
fontWeight: FontWeight.bold,
),
),
),
Radio(
visualDensity: VisualDensity.compact,
splashRadius: 0,
value: false,
groupValue: isCod,
onChanged: (v) {
isCod = v!;
setState(() {});
},
),
],
),
],
),
],
),
),
),
ElevatedButton(
style: ElevatedButton.styleFrom(
minimumSize: Size(250, 30),
backgroundColor: AppColors.deep_orange,
shape: ContinuousRectangleBorder(
borderRadius: BorderRadius.circular(15.0),
),
),
onPressed: () {
if (isCod) {
showOrderDialog(context, snapshot.data!, totalPrice);
} else {
payWithMidtrans(snapshot.data!, totalPrice);
}
},
child: Text(
"Order",
style: GoogleFonts.beVietnamPro(
textStyle: const TextStyle(
color: Colors.white,
fontSize: 15,
fontWeight: FontWeight.w400,
),
),
),
)
],
),
);
},
),
],
),
),
)
],
),
),
],
),
)),
);
}
}

311
lib/ui/login_screen.dart Normal file
View File

@ -0,0 +1,311 @@
import 'package:e_commerce/const/AppColors.dart';
import 'package:e_commerce/ui/bottom_nav_controller.dart';
import 'package:e_commerce/ui/registration_screen.dart';
import 'package:e_commerce/widgets/customButton.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:fluttertoast/fluttertoast.dart';
class LoginScreen extends StatefulWidget {
@override
_LoginScreenState createState() => _LoginScreenState();
}
class _LoginScreenState extends State<LoginScreen> {
TextEditingController _emailController = TextEditingController();
TextEditingController _passwordController = TextEditingController();
bool _obscureText = true;
signIn() async {
try {
UserCredential userCredential = await FirebaseAuth.instance
.signInWithEmailAndPassword(
email: _emailController.text, password: _passwordController.text);
var authCredential = userCredential.user;
if (authCredential != null && authCredential.uid.isNotEmpty) {
Navigator.pushReplacement(
context, CupertinoPageRoute(builder: (_) => BottomNavController()));
} else {
Fluttertoast.showToast(
msg: "Something went wrong",
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.TOP,
backgroundColor: AppColors.deep_orange,
textColor: Colors.white,
fontSize: 16.0,
);
}
} on FirebaseAuthException catch (e) {
if (e.code == 'user-not-found') {
Fluttertoast.showToast(
msg: "No user found for that email.",
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.TOP,
backgroundColor: AppColors.deep_orange,
textColor: Colors.white,
fontSize: 16.0,
);
} else if (e.code == 'wrong-password') {
Fluttertoast.showToast(
msg: "Wrong password provided for that user.",
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.TOP,
backgroundColor: AppColors.deep_orange,
textColor: Colors.white,
fontSize: 16.0,
);
} else if (e.code == 'invalid-email') {
Fluttertoast.showToast(
msg: "Invalid email format.",
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.TOP,
backgroundColor: AppColors.deep_orange,
textColor: Colors.white,
fontSize: 16.0,
);
} else {
Fluttertoast.showToast(
msg: "An error occurred: ${e.message}",
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.TOP,
backgroundColor: AppColors.deep_orange,
textColor: Colors.white,
fontSize: 16.0,
);
}
} catch (e) {
Fluttertoast.showToast(
msg: "Unexpected error occurred",
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.CENTER,
backgroundColor: Colors.red,
textColor: Colors.white,
fontSize: 16.0,
);
}
}
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: AppColors.deep_orange,
body: SafeArea(
child: Column(
children: [
SizedBox(
height: 150.h,
width: ScreenUtil().screenWidth,
child: Padding(
padding: EdgeInsets.only(left: 20.w),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.start,
children: [
IconButton(
onPressed: null,
icon: Icon(
Icons.light,
color: Colors.transparent,
),
),
Text(
"Login",
style: TextStyle(fontSize: 22.sp, color: Colors.white),
),
],
),
),
),
Expanded(
child: Container(
width: ScreenUtil().screenWidth,
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.only(
topLeft: Radius.circular(28.r),
topRight: Radius.circular(28.r),
),
),
child: Padding(
padding: EdgeInsets.all(20.w),
child: SingleChildScrollView(
scrollDirection: Axis.vertical,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
SizedBox(
height: 20.h,
),
Text(
"Welcome to PojokTI",
style: TextStyle(
fontSize: 22.sp, color: AppColors.deep_orange),
),
Text(
"Everyday shopping made easy.",
style: TextStyle(
fontSize: 14.sp,
color: Color(0xFFBBBBBB),
),
),
SizedBox(
height: 15.h,
),
Row(
children: [
Container(
height: 48.h,
width: 41.w,
decoration: BoxDecoration(
color: AppColors.deep_orange,
borderRadius: BorderRadius.circular(12.r)),
child: Center(
child: Icon(
Icons.email_outlined,
color: Colors.white,
size: 20.w,
),
),
),
SizedBox(
width: 10.w,
),
Expanded(
child: TextField(
controller: _emailController,
decoration: InputDecoration(
hintText: "example@gmail.com",
hintStyle: TextStyle(
fontSize: 14.sp,
color: Colors.grey,
),
labelText: 'EMAIL',
labelStyle: TextStyle(
fontSize: 15.sp,
color: AppColors.deep_orange,
),
),
),
),
],
),
SizedBox(
height: 10.h,
),
Row(
children: [
Container(
height: 48.h,
width: 41.w,
decoration: BoxDecoration(
color: AppColors.deep_orange,
borderRadius: BorderRadius.circular(12.r)),
child: Center(
child: Icon(
Icons.lock_outline,
color: Colors.white,
size: 20.w,
),
),
),
SizedBox(
width: 10.w,
),
Expanded(
child: TextField(
controller: _passwordController,
obscureText: _obscureText,
decoration: InputDecoration(
hintText: "password must be 6 character",
hintStyle: TextStyle(
fontSize: 14.sp,
color: Colors.grey,
),
labelText: 'PASSWORD',
labelStyle: TextStyle(
fontSize: 15.sp,
color: AppColors.deep_orange,
),
suffixIcon: _obscureText == true
? IconButton(
onPressed: () {
setState(() {
_obscureText = false;
});
},
icon: Icon(
Icons.remove_red_eye,
size: 20.w,
))
: IconButton(
onPressed: () {
setState(() {
_obscureText = true;
});
},
icon: Icon(
Icons.visibility_off,
size: 20.w,
)),
),
),
),
],
),
SizedBox(
height: 50.h,
),
// elevated button
customButton(
"Login",
() {
signIn();
},
),
SizedBox(
height: 20.h,
),
Wrap(
children: [
Text(
"Don't have an account?",
style: TextStyle(
fontSize: 13.sp,
fontWeight: FontWeight.w600,
color: Color(0xFFBBBBBB),
),
),
GestureDetector(
child: Text(
" Register",
style: TextStyle(
fontSize: 13.sp,
fontWeight: FontWeight.w600,
color: AppColors.deep_orange,
),
),
onTap: () {
Navigator.pushReplacement(
context,
CupertinoPageRoute(
builder: (context) =>
RegistrationScreen()));
},
)
],
)
],
),
),
),
),
),
],
),
),
);
}
}

View File

@ -0,0 +1,109 @@
import 'dart:convert';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:e_commerce/widgets/fetch_cart.dart';
import 'package:flutter/material.dart';
import 'package:url_launcher/url_launcher.dart';
import 'package:webview_flutter/webview_flutter.dart';
class MidtransPay extends StatefulWidget {
const MidtransPay({super.key, required this.token, required this.snapshot});
final String token;
final QuerySnapshot snapshot;
@override
State<MidtransPay> createState() => _MidtransPayState();
}
class _MidtransPayState extends State<MidtransPay> {
late WebViewController controller;
final midtransConfig = {
'clientKey': 'SB-Mid-client-7jg9rzEOfqKDKPKw',
'url': 'https://app.sandbox.midtrans.com/snap/snap.js',
};
String _getHtmlString() {
String htmlString = '''
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script
type="text/javascript"
src="${midtransConfig['url']}"
data-client-key="${midtransConfig['clientKey']}"
></script>
</head>
<body onload="setTimeout(function(){pay()}, 1000)">
<script type="text/javascript">
function pay() {
snap.pay('${widget.token}', {
onSuccess: function(result) {
Android.postMessage('ok');
},
onPending: function(result) {
Android.postMessage('pending');
},
onError: function(result) {
Android.postMessage('error');
},
onClose: function() {
Android.postMessage('close');
}
});
}
</script>
</body>
</html>
''';
return htmlString;
}
void _initController() {
setState(() {
controller = WebViewController()
..setJavaScriptMode(JavaScriptMode.unrestricted)
..addJavaScriptChannel('Android', onMessageReceived: androidMessage)
..setNavigationDelegate(NavigationDelegate(onNavigationRequest: (request) async {
if (request.url.substring(0, 6) == 'intent') {
if (request.url.contains('gopay')) {
String url = request.url.replaceAll('intent://', 'gojek://');
await launchUrl(Uri.parse(url));
}
return NavigationDecision.prevent;
} else {
return NavigationDecision.navigate;
}
}))
..loadRequest(Uri.dataFromString(_getHtmlString(), mimeType: 'text/html', encoding: Encoding.getByName('utf-8')));
});
}
void androidMessage(JavaScriptMessage receiver) {
if (receiver.message != 'undefined') {
if (receiver.message == 'close' || receiver.message == 'error') {
Navigator.pop(context);
ScaffoldMessenger.of(context).showSnackBar(const SnackBar(content: Text('Pembayaran Gagal')));
} else {
updateStock(widget.snapshot);
deleteAllItems("users-cart-items");
Navigator.pop(context);
ScaffoldMessenger.of(context).showSnackBar(const SnackBar(content: Text('Pembayaran Berhasil')));
}
}
}
@override
void initState() {
_initController();
super.initState();
}
@override
Widget build(BuildContext context) {
return SafeArea(
child: Scaffold(
body: WebViewWidget(controller: controller),
),
);
}
}

View File

@ -0,0 +1,171 @@
import 'package:carousel_slider/carousel_slider.dart';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:e_commerce/const/rupiah.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:e_commerce/const/AppColors.dart';
class ProductDetails extends StatefulWidget {
var _product;
ProductDetails(this._product);
@override
_ProductDetailsState createState() => _ProductDetailsState();
}
class _ProductDetailsState extends State<ProductDetails> {
final snackBar = const SnackBar(
content: Text('Produk Berhasil Ditambahkan ke Keranjang'),
);
Future addToCart() async {
final FirebaseAuth _auth = FirebaseAuth.instance;
var currentUser = _auth.currentUser;
CollectionReference _collectionRef = FirebaseFirestore.instance.collection("users-cart-items");
if (widget._product["stock"] <= 0) {
return ScaffoldMessenger.of(context).showSnackBar(const SnackBar(content: Text("Stok barang sudah kosong")));
} else {
final userEmail = await FirebaseAuth.instance.currentUser?.email;
final cart = await FirebaseFirestore.instance.collection('users-cart-items').doc(userEmail).collection('items').get();
final count = cart.docs.where((element) => element.data()['name'] == widget._product["product-name"]).length;
if (count >= widget._product["stock"]) {
return ScaffoldMessenger.of(context).showSnackBar(const SnackBar(content: Text("Produk dikeranjang sudah melebihi stock")));
}
}
return _collectionRef.doc(currentUser!.email).collection("items").doc().set({
"name": widget._product["product-name"],
"price": widget._product["product-price"],
"images": widget._product["product-img"],
}).then((value) => ScaffoldMessenger.of(context).showSnackBar(snackBar));
}
Future addToFavourite() async {
final FirebaseAuth _auth = FirebaseAuth.instance;
var currentUser = _auth.currentUser;
CollectionReference _collectionRef = FirebaseFirestore.instance.collection("users-favourite-items");
return _collectionRef.doc(currentUser!.email).collection("items").doc().set({
"name": widget._product["product-name"],
"price": widget._product["product-price"],
"images": widget._product["product-img"],
}).then((value) => print("Added to favourite"));
}
@override
Widget build(BuildContext context) {
final rupiah = int.parse(widget._product['product-price']) ?? 0;
return Scaffold(
appBar: AppBar(
backgroundColor: Colors.transparent,
elevation: 0,
leading: Padding(
padding: const EdgeInsets.all(8.0),
child: CircleAvatar(
backgroundColor: AppColors.deep_orange,
child: IconButton(
onPressed: () => Navigator.pop(context),
icon: Icon(
Icons.arrow_back,
color: Colors.white,
)),
),
),
actions: [
StreamBuilder(
stream: FirebaseFirestore.instance
.collection("users-favourite-items")
.doc(FirebaseAuth.instance.currentUser!.email)
.collection("items")
.where("name", isEqualTo: widget._product['product-name'])
.snapshots(),
builder: (BuildContext context, AsyncSnapshot snapshot) {
if (snapshot.data == null) {
return Text("");
}
return Padding(
padding: const EdgeInsets.only(right: 8),
child: CircleAvatar(
backgroundColor: Colors.red,
child: IconButton(
onPressed: () => snapshot.data.docs.length == 0 ? addToFavourite() : print("Already Added"),
icon: snapshot.data.docs.length == 0
? Icon(
Icons.favorite_outline,
color: Colors.white,
)
: Icon(
Icons.favorite,
color: Colors.white,
),
),
),
);
},
),
],
),
body: SafeArea(
child: Padding(
padding: const EdgeInsets.only(left: 12, right: 12, top: 10),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Container(
height: MediaQuery.of(context).size.height * 0.35,
child: AspectRatio(
aspectRatio: 3.5,
child: CarouselSlider(
items: widget._product['product-img']
.map<Widget>((item) => Padding(
padding: const EdgeInsets.only(left: 3, right: 3),
child: Container(
decoration: BoxDecoration(image: DecorationImage(image: NetworkImage(item), fit: BoxFit.fitWidth)),
),
))
.toList(),
options: CarouselOptions(
autoPlay: false,
enlargeCenterPage: true,
viewportFraction: 0.7,
enlargeStrategy: CenterPageEnlargeStrategy.height,
onPageChanged: (val, carouselPageChangedReason) {
setState(() {});
})),
),
),
Text(
widget._product['product-name'],
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 25),
),
Text(widget._product['product-description']),
SizedBox(
height: 10,
),
Text(
"${rupiah.toRupiah()}",
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 30, color: Colors.red),
),
Divider(),
SizedBox(
width: 1.sw,
height: 56.h,
child: ElevatedButton(
onPressed: () => addToCart(),
child: Text(
"Add to cart",
style: TextStyle(color: Colors.white, fontSize: 18.sp),
),
style: ElevatedButton.styleFrom(
backgroundColor: AppColors.deep_orange,
elevation: 3,
),
),
),
],
),
)),
);
}
}

View File

@ -0,0 +1,317 @@
import 'package:e_commerce/const/AppColors.dart';
import 'package:e_commerce/ui/login_screen.dart';
import 'package:e_commerce/ui/user_form.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:fluttertoast/fluttertoast.dart';
class RegistrationScreen extends StatefulWidget {
@override
_RegistrationScreenState createState() => _RegistrationScreenState();
}
class _RegistrationScreenState extends State<RegistrationScreen> {
TextEditingController _emailController = TextEditingController();
TextEditingController _passwordController = TextEditingController();
bool _obscureText = true;
signUp() async {
try {
// Buat akun baru dengan Firebase Authentication
UserCredential userCredential = await FirebaseAuth.instance
.createUserWithEmailAndPassword(
email: _emailController.text, password: _passwordController.text);
var authCredential = userCredential.user;
if (authCredential != null && authCredential.uid.isNotEmpty) {
// Jika berhasil, arahkan ke formulir pengguna
Navigator.push(context, CupertinoPageRoute(builder: (_) => UserForm()));
} else {
Fluttertoast.showToast(
msg: "Something is wrong",
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.TOP,
backgroundColor: AppColors.deep_orange,
textColor: Colors.white,
fontSize: 16.0,
);
}
} on FirebaseAuthException catch (e) {
// Tangani kesalahan yang umum terjadi saat mendaftar
if (e.code == 'weak-password') {
Fluttertoast.showToast(
msg: "The password provided is too weak.",
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.TOP,
backgroundColor: AppColors.deep_orange,
textColor: Colors.white,
fontSize: 16.0,
);
} else if (e.code == 'email-already-in-use') {
Fluttertoast.showToast(
msg: "The account already exists for that email.",
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.TOP,
backgroundColor: AppColors.deep_orange,
textColor: Colors.white,
fontSize: 16.0,
);
} else {
Fluttertoast.showToast(
msg: "An error occurred: ${e.message}",
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.TOP,
backgroundColor: AppColors.deep_orange,
textColor: Colors.white,
fontSize: 16.0,
);
}
} catch (e) {
// Tangani kesalahan lain
Fluttertoast.showToast(
msg: "Unexpected error occurred: $e",
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.CENTER,
backgroundColor: Colors.red,
textColor: Colors.white,
fontSize: 16.0,
);
}
}
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: AppColors.deep_orange,
body: SafeArea(
child: Column(
children: [
SizedBox(
height: 150.h,
width: ScreenUtil().screenWidth,
child: Padding(
padding: EdgeInsets.only(left: 20.w),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.start,
children: [
IconButton(
onPressed: null,
icon: Icon(
Icons.light,
color: Colors.transparent,
),
),
Text(
"Register",
style: TextStyle(fontSize: 22.sp, color: Colors.white),
),
],
),
),
),
Expanded(
child: Container(
width: ScreenUtil().screenWidth,
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.only(
topLeft: Radius.circular(28.r),
topRight: Radius.circular(28.r),
),
),
child: Padding(
padding: EdgeInsets.all(20.w),
child: SingleChildScrollView(
scrollDirection: Axis.vertical,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
SizedBox(
height: 20.h,
),
Text(
"Welcome to PojokTI",
style: TextStyle(
fontSize: 22.sp, color: AppColors.deep_orange),
),
Text(
"Everyday shopping made easy.",
style: TextStyle(
fontSize: 14.sp,
color: Color(0xFFBBBBBB),
),
),
SizedBox(
height: 15.h,
),
Row(
children: [
Container(
height: 48.h,
width: 41.w,
decoration: BoxDecoration(
color: AppColors.deep_orange,
borderRadius: BorderRadius.circular(12.r)),
child: Center(
child: Icon(
Icons.email_outlined,
color: Colors.white,
size: 20.w,
),
),
),
SizedBox(
width: 10.w,
),
Expanded(
child: TextField(
controller: _emailController,
decoration: InputDecoration(
hintText: "example@gmail.com",
hintStyle: TextStyle(
fontSize: 14.sp,
color: Colors.grey,
),
labelText: 'EMAIL',
labelStyle: TextStyle(
fontSize: 15.sp,
color: AppColors.deep_orange,
),
),
),
),
],
),
SizedBox(
height: 10.h,
),
Row(
children: [
Container(
height: 48.h,
width: 41.w,
decoration: BoxDecoration(
color: AppColors.deep_orange,
borderRadius: BorderRadius.circular(12.r)),
child: Center(
child: Icon(
Icons.lock_outline,
color: Colors.white,
size: 20.w,
),
),
),
SizedBox(
width: 10.w,
),
Expanded(
child: TextField(
controller: _passwordController,
obscureText: _obscureText,
decoration: InputDecoration(
hintText: "password must be 6 character",
hintStyle: TextStyle(
fontSize: 14.sp,
color: Colors.grey,
),
labelText: 'PASSWORD',
labelStyle: TextStyle(
fontSize: 15.sp,
color: AppColors.deep_orange,
),
suffixIcon: _obscureText == true
? IconButton(
onPressed: () {
setState(() {
_obscureText = false;
});
},
icon: Icon(
Icons.remove_red_eye,
size: 20.w,
))
: IconButton(
onPressed: () {
setState(() {
_obscureText = true;
});
},
icon: Icon(
Icons.visibility_off,
size: 20.w,
)),
),
),
),
],
),
SizedBox(
height: 50.h,
),
// elevated button
SizedBox(
width: 1.sw,
height: 56.h,
child: ElevatedButton(
onPressed: () {
signUp();
},
child: Text(
"Continue",
style: TextStyle(
color: Colors.white, fontSize: 18.sp),
),
style: ElevatedButton.styleFrom(
backgroundColor: AppColors.deep_orange,
elevation: 3,
),
),
),
SizedBox(
height: 20.h,
),
Wrap(
children: [
Text(
"Have an account?",
style: TextStyle(
fontSize: 13.sp,
fontWeight: FontWeight.w600,
color: Color(0xFFBBBBBB),
),
),
GestureDetector(
child: Text(
" Login",
style: TextStyle(
fontSize: 13.sp,
fontWeight: FontWeight.w600,
color: AppColors.deep_orange,
),
),
onTap: () {
Navigator.pushReplacement(
context,
CupertinoPageRoute(
builder: (context) => LoginScreen()));
},
)
],
)
],
),
),
),
),
),
],
),
),
);
}
}

78
lib/ui/search_screen.dart Normal file
View File

@ -0,0 +1,78 @@
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:e_commerce/ui/product_details_screen.dart';
import 'package:flutter/material.dart';
class SearchScreen extends StatefulWidget {
@override
_SearchScreenState createState() => _SearchScreenState();
}
class _SearchScreenState extends State<SearchScreen> {
var inputText = "";
bool isLoading = true;
List<Map<String, dynamic>> data = [];
List<Map<String, dynamic>> displayedData = [];
@override
void initState() {
super.initState();
fetchFromFirebase();
}
void fetchFromFirebase() async {
final query = await FirebaseFirestore.instance.collection("products").get();
data = query.docs.map((e) => e.data()).toList();
displayedData = data;
isLoading = false;
setState(() {});
}
void search(String value) {
displayedData = data.where((element) => element['product-name'].toString().contains(value)).toList();
setState(() {});
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: SafeArea(
child: Padding(
padding: const EdgeInsets.all(20.0),
child: Column(
children: [
TextFormField(
onChanged: (val) => search(val),
),
const SizedBox(height: 30),
if (isLoading) ...[
const Expanded(child: Center(child: CircularProgressIndicator())),
] else ...[
Expanded(
child: SizedBox(
child: ListView(
children: [
...displayedData.map(
(e) => Card(
elevation: 5,
child: ListTile(
title: Text(e['product-name']),
leading: SizedBox(
width: 50, // You can adjust this width as needed
height: 50, // This can be omitted if you don't want a fixed height
child: Image.network(e['product-img'], fit: BoxFit.cover),
),
),
),
)
],
),
),
),
],
],
),
),
),
);
}
}

58
lib/ui/splash_screen.dart Normal file
View File

@ -0,0 +1,58 @@
import 'dart:async';
import 'package:e_commerce/ui/login_screen.dart';
import 'package:e_commerce/ui/tutorial_screen.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import '../const/AppColors.dart';
class SplashScreen extends StatefulWidget {
@override
_SplashScreenState createState() => _SplashScreenState();
}
class _SplashScreenState extends State<SplashScreen> {
@override
void initState() {
Timer(
Duration(seconds: 3),
() => Navigator.pushReplacement(
context, CupertinoPageRoute(builder: (_) => const TutorialScreen())));
super.initState();
}
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: AppColors.deep_orange,
body: SafeArea(
child: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Container(
height: 160, width: 160, child: Image.asset("assets/logo.png")),
Text(
"PojokTI",
style: TextStyle(
color: Colors.white,
fontWeight: FontWeight.bold,
fontSize: 40),
),
SizedBox(
height: 20.h,
),
CircularProgressIndicator(
color: Colors.white,
),
],
),
),
),
);
}
}

114
lib/ui/tutorial_screen.dart Normal file
View File

@ -0,0 +1,114 @@
import 'package:e_commerce/const/AppColors.dart';
import 'package:e_commerce/ui/login_screen.dart';
import 'package:e_commerce/widgets/customButton.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:google_fonts/google_fonts.dart';
class TutorialScreen extends StatefulWidget {
const TutorialScreen({super.key});
@override
State<TutorialScreen> createState() => _TutorialScreenState();
}
class _TutorialScreenState extends State<TutorialScreen> with SingleTickerProviderStateMixin {
late final TabController tabController;
int index = 0;
@override
void initState() {
super.initState();
tabController = TabController(length: 5, vsync: this);
tabController.addListener(() {
index = tabController.index;
setState(() {});
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: SizedBox(
width: double.infinity,
child: Stack(
children: [
TabBarView(
physics: const NeverScrollableScrollPhysics(),
controller: tabController,
children: [
_tutorialWidget(1, context),
_tutorialWidget(2, context),
_tutorialWidget(3, context),
_tutorialWidget(4, context),
_tutorialWidget(5, context),
],
),
if (index == 4) ...[
Positioned(
bottom: 15,
left: 15,
right: 15,
child: SizedBox(
width: 1.sw,
height: 56.h,
child: ElevatedButton(
onPressed: () {
Navigator.pushReplacement(context, CupertinoPageRoute(builder: (_) => LoginScreen()));
},
style: ElevatedButton.styleFrom(
backgroundColor: Colors.white,
elevation: 3,
),
child: Text(
"Selesai",
style: TextStyle(color: AppColors.deep_orange, fontSize: 18.sp),
),
),
),
)
] else ...[
Positioned(
bottom: 15,
left: 15,
right: 15,
child: SizedBox(
width: 1.sw,
height: 56.h,
child: ElevatedButton(
onPressed: () {
index = index + 1;
tabController.animateTo(index);
setState(() {});
},
style: ElevatedButton.styleFrom(
backgroundColor: Colors.white,
elevation: 3,
),
child: Text(
"Selanjutnya",
style: TextStyle(color: AppColors.deep_orange, fontSize: 18.sp),
),
),
),
)
]
],
),
),
);
}
}
Widget _tutorialWidget(int index, BuildContext context) {
return Column(
children: [
Stack(
children: [
Image.asset("assets/$index.png", width: double.infinity, height: MediaQuery.of(context).size.height, fit: BoxFit.fitHeight),
],
),
],
);
}

141
lib/ui/user_form.dart Normal file
View File

@ -0,0 +1,141 @@
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:e_commerce/const/AppColors.dart';
import 'package:e_commerce/ui/bottom_nav_controller.dart';
import 'package:e_commerce/ui/login_screen.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import '../widgets/customButton.dart';
import '../widgets/myTextField.dart';
class UserForm extends StatefulWidget {
@override
_UserFormState createState() => _UserFormState();
}
class _UserFormState extends State<UserForm> {
TextEditingController _nameController = TextEditingController();
TextEditingController _phoneController = TextEditingController();
TextEditingController _dobController = TextEditingController();
TextEditingController _genderController = TextEditingController();
TextEditingController _ageController = TextEditingController();
List<String> gender = ["Male", "Female", "Other"];
Future<void> _selectDateFromPicker(BuildContext context) async {
final DateTime? picked = await showDatePicker(
context: context,
initialDate: DateTime(DateTime.now().year - 20),
firstDate: DateTime(DateTime.now().year - 30),
lastDate: DateTime(DateTime.now().year),
);
if (picked != null)
setState(() {
_dobController.text = "${picked.day}/ ${picked.month}/ ${picked.year}";
});
}
sendUserDataToDB() async {
final FirebaseAuth _auth = FirebaseAuth.instance;
var currentUser = _auth.currentUser;
CollectionReference _collectionRef =
FirebaseFirestore.instance.collection("users-form-data");
return _collectionRef
.doc(currentUser!.email)
.set({
"name": _nameController.text,
"phone": _phoneController.text,
"dob": _dobController.text,
"gender": _genderController.text,
"age": _ageController.text,
})
.then((value) => Navigator.pushReplacement(
context, MaterialPageRoute(builder: (_) => LoginScreen())))
.catchError((error) => print("something is wrong. $error"));
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: SafeArea(
child: Padding(
padding: EdgeInsets.all(20.w),
child: SingleChildScrollView(
scrollDirection: Axis.vertical,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
SizedBox(
height: 20.h,
),
Text(
"Submit the form to continue.",
style:
TextStyle(fontSize: 22.sp, color: AppColors.deep_orange),
),
Text(
"We will not share your information with anyone.",
style: TextStyle(
fontSize: 14.sp,
color: Color(0xFFBBBBBB),
),
),
SizedBox(
height: 15.h,
),
myTextField(
"enter your name", TextInputType.text, _nameController),
myTextField("enter your phone number", TextInputType.number,
_phoneController),
TextField(
controller: _dobController,
readOnly: true,
decoration: InputDecoration(
hintText: "date of birth",
suffixIcon: IconButton(
onPressed: () => _selectDateFromPicker(context),
icon: Icon(Icons.calendar_today_outlined),
),
),
),
TextField(
controller: _genderController,
readOnly: true,
decoration: InputDecoration(
hintText: "choose your gender",
prefixIcon: DropdownButton<String>(
items: gender.map((String value) {
return DropdownMenuItem<String>(
value: value,
child: new Text(value),
onTap: () {
setState(() {
_genderController.text = value;
});
},
);
}).toList(),
onChanged: (_) {},
),
),
),
myTextField(
"enter your age", TextInputType.number, _ageController),
SizedBox(
height: 50.h,
),
// elevated button
customButton("Continue", () => sendUserDataToDB()),
],
),
),
),
),
);
}
}

View File

@ -0,0 +1,21 @@
import 'package:e_commerce/const/AppColors.dart';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
Widget customButton(String buttonText, onPressed) {
return SizedBox(
width: 1.sw,
height: 56.h,
child: ElevatedButton(
onPressed: onPressed,
child: Text(
buttonText,
style: TextStyle(color: Colors.white, fontSize: 18.sp),
),
style: ElevatedButton.styleFrom(
backgroundColor: AppColors.deep_orange,
elevation: 3,
),
),
);
}

View File

@ -0,0 +1,64 @@
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:e_commerce/const/rupiah.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
Widget fetchData(String collectionName) {
return StreamBuilder(
stream: FirebaseFirestore.instance
.collection(collectionName)
.doc(FirebaseAuth.instance.currentUser!.email)
.collection("items")
.snapshots(),
builder: (BuildContext context, AsyncSnapshot<QuerySnapshot> snapshot) {
if (snapshot.hasError) {
return Center(
child: Text("Something is wrong"),
);
}
return ListView.builder(
itemCount: snapshot.data == null ? 0 : snapshot.data!.docs.length,
itemBuilder: (_, index) {
DocumentSnapshot _documentSnapshot = snapshot.data!.docs[index];
final rupiah = int.parse(_documentSnapshot['price']) ?? 0;
return Padding(
padding: const EdgeInsets.all(8.0),
child: Card(
elevation: 5,
child: ListTile(
leading: Text(
_documentSnapshot['name'],
style: TextStyle(fontSize: 16),
),
title: Text(
"${rupiah.toRupiah()}",
style: TextStyle(
fontWeight: FontWeight.bold,
color: Colors.red,
fontSize: 14),
),
trailing: GestureDetector(
child: CircleAvatar(
child: Icon(Icons.remove_circle),
),
onTap: () {
FirebaseFirestore.instance
.collection(collectionName)
.doc(FirebaseAuth.instance.currentUser!.email)
.collection("items")
.doc(_documentSnapshot.id)
.delete();
},
),
),
),
);
});
},
);
}

120
lib/widgets/fetch_cart.dart Normal file
View File

@ -0,0 +1,120 @@
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:e_commerce/const/AppColors.dart';
import 'package:e_commerce/const/rupiah.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:url_launcher/url_launcher.dart';
void deleteAllItems(String collectionName) {
final userEmail = FirebaseAuth.instance.currentUser!.email;
FirebaseFirestore.instance
.collection(collectionName)
.doc(userEmail)
.collection("items")
.get() // Dapatkan semua dokumen dalam sub-koleksi 'items'
.then((snapshot) {
for (var doc in snapshot.docs) {
doc.reference.delete(); // Hapus setiap dokumen dalam sub-koleksi
}
}).catchError((error) {
print("Error deleting items: $error"); // Tangani error saat menghapus
});
}
String createOrderMessage(QuerySnapshot snapshot, int totalPrice, String note) {
StringBuffer messageBuffer = StringBuffer("Halo minTIers aku\n mau pesan nih\n");
messageBuffer.write("\n");
messageBuffer.write("Rincian pesanan:\n");
int itemIndex = 1; // Untuk menjaga urutan item
// Tambahkan setiap item ke pesan dengan format yang diinginkan
snapshot.docs.forEach((doc) {
String itemName = doc['name']; // Nama item
String itemPrice = (int.tryParse(doc['price']) ?? 0).toRupiah(); // Harga item
// Tambahkan item ke pesan
messageBuffer.write("${itemIndex}. $itemName : $itemPrice\n");
// Tingkatkan indeks untuk item berikutnya
itemIndex++;
});
messageBuffer.write("\n");
messageBuffer.write("total pesanan: ${totalPrice.toRupiah()}\n");
messageBuffer.write("Pembayaran: Tunai\n");
messageBuffer.write("\n");
messageBuffer.write("Note: $note\n");
messageBuffer.write("\n");
messageBuffer.write("Tolong segera disiapin yaa dan infokan estimasi bisa diambilnya juga\nTerimakasih minTIers:))\n");
return messageBuffer.toString();
}
Future<void> updateStock(QuerySnapshot snapshot) async {
for (QueryDocumentSnapshot element in snapshot.docs) {
final data = await FirebaseFirestore.instance.collection('products').where('product-name', isEqualTo: element['name']).get();
final docs = data.docs.firstOrNull;
if (docs != null) {
print(docs.id);
final data = docs.data();
final updatedStock = data['stock'] - 1;
await FirebaseFirestore.instance.collection('products').doc(docs.id).update({'stock': updatedStock});
}
}
}
Future<void> openWhatsApp(String phone, String message) async {
final whatsappUrl = Uri.parse("whatsapp://send?phone=$phone&text=$message");
if (!await launchUrl(whatsappUrl, mode: LaunchMode.externalApplication)) {
throw Exception("Could not launch WhatsApp");
}
}
void showOrderDialog(BuildContext context, QuerySnapshot snapshot, int totalPrice) {
TextEditingController noteController = TextEditingController();
showDialog(
context: context,
builder: (BuildContext context) {
return AlertDialog(
title: Text("Tambahkan Catatan"),
content: TextField(
controller: noteController,
decoration: InputDecoration(
hintText: "Masukkan catatan untuk pesanan",
),
),
actions: [
TextButton(
onPressed: () {
Navigator.of(context).pop();
},
child: Text("Batal"),
),
TextButton(
onPressed: () async {
// Ambil catatan yang dimasukkan pengguna
final note = noteController.text;
// Buat pesan dengan catatan yang dimasukkan
final orderMessage = createOrderMessage(snapshot, totalPrice, note);
await updateStock(snapshot);
// Buka WhatsApp dengan pesan yang telah disiapkan
openWhatsApp("+6289523392734", orderMessage);
deleteAllItems("users-cart-items");
// Tutup dialog setelah menekan OK
Navigator.of(context).pop();
},
child: Text("OK"),
),
],
);
},
);
}

View File

@ -0,0 +1,9 @@
import 'package:flutter/material.dart';
Widget myTextField(String hintText,keyBoardType,controller){
return TextField(
keyboardType: keyBoardType,
controller: controller,
decoration: InputDecoration(hintText: hintText),
);
}

1
linux/.gitignore vendored Normal file
View File

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

145
linux/CMakeLists.txt Normal file
View File

@ -0,0 +1,145 @@
# Project-level configuration.
cmake_minimum_required(VERSION 3.10)
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 "e_commerce")
# The unique GTK application identifier for this application. See:
# https://wiki.gnome.org/HowDoI/ChooseApplicationID
set(APPLICATION_ID "com.example.e_commerce")
# 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)
add_definitions(-DAPPLICATION_ID="${APPLICATION_ID}")
# Define the application target. To change its name, change BINARY_NAME above,
# not the value here, or `flutter run` will no longer work.
#
# Any new source files that you add to the application should be added here.
add_executable(${BINARY_NAME}
"main.cc"
"my_application.cc"
"${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc"
)
# Apply the standard set of build settings. This can be removed for applications
# that need different build settings.
apply_standard_settings(${BINARY_NAME})
# Add dependency libraries. Add any application-specific dependencies here.
target_link_libraries(${BINARY_NAME} PRIVATE flutter)
target_link_libraries(${BINARY_NAME} PRIVATE PkgConfig::GTK)
# 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}
)

View File

@ -0,0 +1,15 @@
//
// Generated file. Do not edit.
//
// clang-format off
#include "generated_plugin_registrant.h"
#include <url_launcher_linux/url_launcher_plugin.h>
void fl_register_plugins(FlPluginRegistry* registry) {
g_autoptr(FlPluginRegistrar) url_launcher_linux_registrar =
fl_plugin_registry_get_registrar_for_plugin(registry, "UrlLauncherPlugin");
url_launcher_plugin_register_with_registrar(url_launcher_linux_registrar);
}

View File

@ -0,0 +1,15 @@
//
// Generated file. Do not edit.
//
// clang-format off
#ifndef GENERATED_PLUGIN_REGISTRANT_
#define GENERATED_PLUGIN_REGISTRANT_
#include <flutter_linux/flutter_linux.h>
// Registers Flutter plugins.
void fl_register_plugins(FlPluginRegistry* registry);
#endif // GENERATED_PLUGIN_REGISTRANT_

View File

@ -0,0 +1,24 @@
#
# Generated file, do not edit.
#
list(APPEND FLUTTER_PLUGIN_LIST
url_launcher_linux
)
list(APPEND FLUTTER_FFI_PLUGIN_LIST
)
set(PLUGIN_BUNDLED_LIBRARIES)
foreach(plugin ${FLUTTER_PLUGIN_LIST})
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin})
target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin)
list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
endforeach(plugin)
foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin})
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
endforeach(ffi_plugin)

6
linux/main.cc Normal file
View File

@ -0,0 +1,6 @@
#include "my_application.h"
int main(int argc, char** argv) {
g_autoptr(MyApplication) app = my_application_new();
return g_application_run(G_APPLICATION(app), argc, argv);
}

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