diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..29a3a50 --- /dev/null +++ b/.gitignore @@ -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 diff --git a/.metadata b/.metadata new file mode 100644 index 0000000..f31ee66 --- /dev/null +++ b/.metadata @@ -0,0 +1,33 @@ +# 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: "b0366e0a3f089e15fd89c97604ab402fe26b724c" + channel: "stable" + +project_type: app + +# Tracks metadata for the flutter migrate command +migration: + platforms: + - platform: root + create_revision: b0366e0a3f089e15fd89c97604ab402fe26b724c + base_revision: b0366e0a3f089e15fd89c97604ab402fe26b724c + - platform: android + create_revision: b0366e0a3f089e15fd89c97604ab402fe26b724c + base_revision: b0366e0a3f089e15fd89c97604ab402fe26b724c + - platform: ios + create_revision: b0366e0a3f089e15fd89c97604ab402fe26b724c + base_revision: b0366e0a3f089e15fd89c97604ab402fe26b724c + + # User provided section + + # List of Local paths (relative to this file) that should be + # ignored by the migrate tool. + # + # Files that are not part of the templates will be ignored by default. + unmanaged_files: + - 'lib/main.dart' + - 'ios/Runner.xcodeproj/project.pbxproj' diff --git a/analysis_options.yaml b/analysis_options.yaml new file mode 100644 index 0000000..0d29021 --- /dev/null +++ b/analysis_options.yaml @@ -0,0 +1,28 @@ +# This file configures the analyzer, which statically analyzes Dart code to +# check for errors, warnings, and lints. +# +# The issues identified by the analyzer are surfaced in the UI of Dart-enabled +# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be +# invoked from the command line by running `flutter analyze`. + +# The following line activates a set of recommended lints for Flutter apps, +# packages, and plugins designed to encourage good coding practices. +include: package:flutter_lints/flutter.yaml + +linter: + # The lint rules applied to this project can be customized in the + # section below to disable rules from the `package:flutter_lints/flutter.yaml` + # included above or to enable additional rules. A list of all available lints + # and their documentation is published at https://dart.dev/lints. + # + # Instead of disabling a lint rule for the entire project in the + # section below, it can also be suppressed for a single line of code + # or a specific dart file by using the `// ignore: name_of_lint` and + # `// ignore_for_file: name_of_lint` syntax on the line or in the file + # producing the lint. + rules: + # avoid_print: false # Uncomment to disable the `avoid_print` rule + # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule + +# Additional information about this file can be found at +# https://dart.dev/guides/language/analysis-options diff --git a/android/.gitignore b/android/.gitignore new file mode 100644 index 0000000..6f56801 --- /dev/null +++ b/android/.gitignore @@ -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 diff --git a/android/app/build.gradle b/android/app/build.gradle new file mode 100644 index 0000000..768a80a --- /dev/null +++ b/android/app/build.gradle @@ -0,0 +1,67 @@ +plugins { + id "com.android.application" + 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.cims_apps" + compileSdkVersion 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.cims_apps" + // 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 + 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 {} diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml new file mode 100644 index 0000000..399f698 --- /dev/null +++ b/android/app/src/debug/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..c536cf0 --- /dev/null +++ b/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + diff --git a/android/app/src/main/kotlin/com/example/cims_apps/MainActivity.kt b/android/app/src/main/kotlin/com/example/cims_apps/MainActivity.kt new file mode 100644 index 0000000..ec78271 --- /dev/null +++ b/android/app/src/main/kotlin/com/example/cims_apps/MainActivity.kt @@ -0,0 +1,6 @@ +package com.example.cims_apps + +import io.flutter.embedding.android.FlutterActivity + +class MainActivity: FlutterActivity() { +} diff --git a/android/app/src/main/res/drawable-v21/launch_background.xml b/android/app/src/main/res/drawable-v21/launch_background.xml new file mode 100644 index 0000000..f74085f --- /dev/null +++ b/android/app/src/main/res/drawable-v21/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/android/app/src/main/res/drawable/launch_background.xml b/android/app/src/main/res/drawable/launch_background.xml new file mode 100644 index 0000000..304732f --- /dev/null +++ b/android/app/src/main/res/drawable/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..db77bb4 Binary files /dev/null and b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..17987b7 Binary files /dev/null and b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..09d4391 Binary files /dev/null and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..d5f1c8d Binary files /dev/null and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..4d6372e Binary files /dev/null and b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/values-night/styles.xml b/android/app/src/main/res/values-night/styles.xml new file mode 100644 index 0000000..06952be --- /dev/null +++ b/android/app/src/main/res/values-night/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..cb1ef88 --- /dev/null +++ b/android/app/src/main/res/values/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/android/app/src/profile/AndroidManifest.xml b/android/app/src/profile/AndroidManifest.xml new file mode 100644 index 0000000..399f698 --- /dev/null +++ b/android/app/src/profile/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/android/build.gradle b/android/build.gradle new file mode 100644 index 0000000..e83fb5d --- /dev/null +++ b/android/build.gradle @@ -0,0 +1,30 @@ +buildscript { + ext.kotlin_version = '1.7.10' + repositories { + google() + mavenCentral() + } + + dependencies { + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + } +} + +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 +} diff --git a/android/gradle.properties b/android/gradle.properties new file mode 100644 index 0000000..598d13f --- /dev/null +++ b/android/gradle.properties @@ -0,0 +1,3 @@ +org.gradle.jvmargs=-Xmx4G +android.useAndroidX=true +android.enableJetifier=true diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..3c472b9 --- /dev/null +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip diff --git a/android/settings.gradle b/android/settings.gradle new file mode 100644 index 0000000..7cd7128 --- /dev/null +++ b/android/settings.gradle @@ -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-gradle-plugin" version "1.0.0" apply false + } +} + +plugins { + id "dev.flutter.flutter-plugin-loader" version "1.0.0" + id "com.android.application" version "7.3.0" apply false +} + +include ":app" diff --git a/assets/fonts/Manrope/Manrope-Bold.ttf b/assets/fonts/Manrope/Manrope-Bold.ttf new file mode 100644 index 0000000..98c1c3d Binary files /dev/null and b/assets/fonts/Manrope/Manrope-Bold.ttf differ diff --git a/assets/fonts/Manrope/Manrope-ExtraBold.ttf b/assets/fonts/Manrope/Manrope-ExtraBold.ttf new file mode 100644 index 0000000..369d719 Binary files /dev/null and b/assets/fonts/Manrope/Manrope-ExtraBold.ttf differ diff --git a/assets/fonts/Manrope/Manrope-ExtraLight.ttf b/assets/fonts/Manrope/Manrope-ExtraLight.ttf new file mode 100644 index 0000000..8915d96 Binary files /dev/null and b/assets/fonts/Manrope/Manrope-ExtraLight.ttf differ diff --git a/assets/fonts/Manrope/Manrope-Light.ttf b/assets/fonts/Manrope/Manrope-Light.ttf new file mode 100644 index 0000000..4942924 Binary files /dev/null and b/assets/fonts/Manrope/Manrope-Light.ttf differ diff --git a/assets/fonts/Manrope/Manrope-Medium.ttf b/assets/fonts/Manrope/Manrope-Medium.ttf new file mode 100644 index 0000000..5eda9ec Binary files /dev/null and b/assets/fonts/Manrope/Manrope-Medium.ttf differ diff --git a/assets/fonts/Manrope/Manrope-Regular.ttf b/assets/fonts/Manrope/Manrope-Regular.ttf new file mode 100644 index 0000000..1a07233 Binary files /dev/null and b/assets/fonts/Manrope/Manrope-Regular.ttf differ diff --git a/assets/fonts/Manrope/Manrope-SemiBold.ttf b/assets/fonts/Manrope/Manrope-SemiBold.ttf new file mode 100644 index 0000000..b6e9c20 Binary files /dev/null and b/assets/fonts/Manrope/Manrope-SemiBold.ttf differ diff --git a/assets/icons/icon-1.png b/assets/icons/icon-1.png new file mode 100644 index 0000000..4f140c8 Binary files /dev/null and b/assets/icons/icon-1.png differ diff --git a/assets/icons/icon-connect.png b/assets/icons/icon-connect.png new file mode 100644 index 0000000..eff36d7 Binary files /dev/null and b/assets/icons/icon-connect.png differ diff --git a/assets/icons/icon-google.png b/assets/icons/icon-google.png new file mode 100644 index 0000000..7991500 Binary files /dev/null and b/assets/icons/icon-google.png differ diff --git a/assets/icons/icon-inklusi.png b/assets/icons/icon-inklusi.png new file mode 100644 index 0000000..5891212 Binary files /dev/null and b/assets/icons/icon-inklusi.png differ diff --git a/assets/icons/icon-ojk.png b/assets/icons/icon-ojk.png new file mode 100644 index 0000000..d79d8ce Binary files /dev/null and b/assets/icons/icon-ojk.png differ diff --git a/assets/icons/icon-reksadana.png b/assets/icons/icon-reksadana.png new file mode 100644 index 0000000..f7ada2a Binary files /dev/null and b/assets/icons/icon-reksadana.png differ diff --git a/assets/icons/splash-left.png b/assets/icons/splash-left.png new file mode 100644 index 0000000..378b3d6 Binary files /dev/null and b/assets/icons/splash-left.png differ diff --git a/assets/icons/splash-right.png b/assets/icons/splash-right.png new file mode 100644 index 0000000..b0f222d Binary files /dev/null and b/assets/icons/splash-right.png differ diff --git a/assets/images/img-dashboard.png b/assets/images/img-dashboard.png new file mode 100644 index 0000000..b6ebf20 Binary files /dev/null and b/assets/images/img-dashboard.png differ diff --git a/assets/images/img-email.png b/assets/images/img-email.png new file mode 100644 index 0000000..90068ed Binary files /dev/null and b/assets/images/img-email.png differ diff --git a/assets/images/img-ktp-blur.png b/assets/images/img-ktp-blur.png new file mode 100644 index 0000000..2b43ddc Binary files /dev/null and b/assets/images/img-ktp-blur.png differ diff --git a/assets/images/img-ktp-clear.png b/assets/images/img-ktp-clear.png new file mode 100644 index 0000000..be208fe Binary files /dev/null and b/assets/images/img-ktp-clear.png differ diff --git a/assets/images/img-ktp-cropped.png b/assets/images/img-ktp-cropped.png new file mode 100644 index 0000000..d01ceac Binary files /dev/null and b/assets/images/img-ktp-cropped.png differ diff --git a/assets/images/img-ktp-light.png b/assets/images/img-ktp-light.png new file mode 100644 index 0000000..b0fccaf Binary files /dev/null and b/assets/images/img-ktp-light.png differ diff --git a/assets/images/img-registration.png b/assets/images/img-registration.png new file mode 100644 index 0000000..f8f9868 Binary files /dev/null and b/assets/images/img-registration.png differ diff --git a/assets/images/img-selfie-blur.png b/assets/images/img-selfie-blur.png new file mode 100644 index 0000000..b66acab Binary files /dev/null and b/assets/images/img-selfie-blur.png differ diff --git a/assets/images/img-selfie-clear.png b/assets/images/img-selfie-clear.png new file mode 100644 index 0000000..192f4f9 Binary files /dev/null and b/assets/images/img-selfie-clear.png differ diff --git a/assets/images/splash-logo.png b/assets/images/splash-logo.png new file mode 100644 index 0000000..924da1f Binary files /dev/null and b/assets/images/splash-logo.png differ diff --git a/ios/.gitignore b/ios/.gitignore new file mode 100644 index 0000000..7a7f987 --- /dev/null +++ b/ios/.gitignore @@ -0,0 +1,34 @@ +**/dgph +*.mode1v3 +*.mode2v3 +*.moved-aside +*.pbxuser +*.perspectivev3 +**/*sync/ +.sconsign.dblite +.tags* +**/.vagrant/ +**/DerivedData/ +Icon? +**/Pods/ +**/.symlinks/ +profile +xcuserdata +**/.generated/ +Flutter/App.framework +Flutter/Flutter.framework +Flutter/Flutter.podspec +Flutter/Generated.xcconfig +Flutter/ephemeral/ +Flutter/app.flx +Flutter/app.zip +Flutter/flutter_assets/ +Flutter/flutter_export_environment.sh +ServiceDefinitions.json +Runner/GeneratedPluginRegistrant.* + +# Exceptions to above rules. +!default.mode1v3 +!default.mode2v3 +!default.pbxuser +!default.perspectivev3 diff --git a/ios/Flutter/AppFrameworkInfo.plist b/ios/Flutter/AppFrameworkInfo.plist new file mode 100644 index 0000000..9625e10 --- /dev/null +++ b/ios/Flutter/AppFrameworkInfo.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + MinimumOSVersion + 11.0 + + diff --git a/ios/Flutter/Debug.xcconfig b/ios/Flutter/Debug.xcconfig new file mode 100644 index 0000000..592ceee --- /dev/null +++ b/ios/Flutter/Debug.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/ios/Flutter/Release.xcconfig b/ios/Flutter/Release.xcconfig new file mode 100644 index 0000000..592ceee --- /dev/null +++ b/ios/Flutter/Release.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000..a78a7e6 --- /dev/null +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,614 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXBuildFile section */ + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; + 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 */; }; + 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 97C146E61CF9000F007C117D /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C146ED1CF9000F007C117D; + remoteInfo = Runner; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 9705A1C41CF9048500538489 /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; + 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; + 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; + 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 97C146EB1CF9000F007C117D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 9740EEB11CF90186004384FC /* Flutter */ = { + isa = PBXGroup; + children = ( + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 9740EEB31CF90195004384FC /* Generated.xcconfig */, + ); + name = Flutter; + sourceTree = ""; + }; + 331C8082294A63A400263BE5 /* RunnerTests */ = { + isa = PBXGroup; + children = ( + 331C807B294A618700263BE5 /* RunnerTests.swift */, + ); + path = RunnerTests; + sourceTree = ""; + }; + 97C146E51CF9000F007C117D = { + isa = PBXGroup; + children = ( + 9740EEB11CF90186004384FC /* Flutter */, + 97C146F01CF9000F007C117D /* Runner */, + 97C146EF1CF9000F007C117D /* Products */, + 331C8082294A63A400263BE5 /* RunnerTests */, + ); + sourceTree = ""; + }; + 97C146EF1CF9000F007C117D /* Products */ = { + isa = PBXGroup; + children = ( + 97C146EE1CF9000F007C117D /* Runner.app */, + 331C8081294A63A400263BE5 /* RunnerTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 97C146F01CF9000F007C117D /* Runner */ = { + isa = PBXGroup; + children = ( + 97C146FA1CF9000F007C117D /* Main.storyboard */, + 97C146FD1CF9000F007C117D /* Assets.xcassets */, + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, + 97C147021CF9000F007C117D /* Info.plist */, + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, + ); + path = Runner; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 331C8080294A63A400263BE5 /* RunnerTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; + buildPhases = ( + 331C807D294A63A400263BE5 /* Sources */, + 331C807E294A63A400263BE5 /* Frameworks */, + 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 = 1430; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 331C8080294A63A400263BE5 = { + CreatedOnToolsVersion = 14.0; + TestTargetID = 97C146ED1CF9000F007C117D; + }; + 97C146ED1CF9000F007C117D = { + CreatedOnToolsVersion = 7.3.1; + LastSwiftMigration = 1100; + }; + }; + }; + buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 97C146E51CF9000F007C117D; + productRefGroup = 97C146EF1CF9000F007C117D /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 97C146ED1CF9000F007C117D /* Runner */, + 331C8080294A63A400263BE5 /* RunnerTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 331C807F294A63A400263BE5 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EC1CF9000F007C117D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}", + ); + name = "Thin Binary"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; + }; + 9740EEB61CF901F6004384FC /* Run Script */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Run Script"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 331C807D294A63A400263BE5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EA1CF9000F007C117D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 331C8086294A63A400263BE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 97C146ED1CF9000F007C117D /* Runner */; + targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 97C146FA1CF9000F007C117D /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C146FB1CF9000F007C117D /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C147001CF9000F007C117D /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 249021D3217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + 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; + 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 = 11.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.cimsApps; + 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; + baseConfigurationReference = AE0B7B92F70575B8D7E0D07E /* Pods-RunnerTests.debug.xcconfig */; + 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.cimsApps.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; + baseConfigurationReference = 89B67EB44CE7B6631473024E /* Pods-RunnerTests.release.xcconfig */; + 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.cimsApps.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; + baseConfigurationReference = 640959BDD8F10B91D80A66BE /* Pods-RunnerTests.profile.xcconfig */; + 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.cimsApps.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; + 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; + 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 = 11.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; + 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; + 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 = 11.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.cimsApps; + 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.cimsApps; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 331C8088294A63A400263BE5 /* Debug */, + 331C8089294A63A400263BE5 /* Release */, + 331C808A294A63A400263BE5 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147031CF9000F007C117D /* Debug */, + 97C147041CF9000F007C117D /* Release */, + 249021D3217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147061CF9000F007C117D /* Debug */, + 97C147071CF9000F007C117D /* Release */, + 249021D4217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 97C146E61CF9000F007C117D /* Project object */; +} diff --git a/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000..87131a0 --- /dev/null +++ b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..1d526a1 --- /dev/null +++ b/ios/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/ios/Runner/AppDelegate.swift b/ios/Runner/AppDelegate.swift new file mode 100644 index 0000000..70693e4 --- /dev/null +++ b/ios/Runner/AppDelegate.swift @@ -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) + } +} diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..d36b1fa --- /dev/null +++ b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,122 @@ +{ + "images" : [ + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@3x.png", + "scale" : "3x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@3x.png", + "scale" : "3x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@3x.png", + "scale" : "3x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@2x.png", + "scale" : "2x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@3x.png", + "scale" : "3x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@1x.png", + "scale" : "1x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@1x.png", + "scale" : "1x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@1x.png", + "scale" : "1x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@2x.png", + "scale" : "2x" + }, + { + "size" : "83.5x83.5", + "idiom" : "ipad", + "filename" : "Icon-App-83.5x83.5@2x.png", + "scale" : "2x" + }, + { + "size" : "1024x1024", + "idiom" : "ios-marketing", + "filename" : "Icon-App-1024x1024@1x.png", + "scale" : "1x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png new file mode 100644 index 0000000..dc9ada4 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png new file mode 100644 index 0000000..7353c41 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png new file mode 100644 index 0000000..797d452 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png new file mode 100644 index 0000000..6ed2d93 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png new file mode 100644 index 0000000..4cd7b00 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png new file mode 100644 index 0000000..fe73094 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png new file mode 100644 index 0000000..321773c Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png new file mode 100644 index 0000000..797d452 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png new file mode 100644 index 0000000..502f463 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png new file mode 100644 index 0000000..0ec3034 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png new file mode 100644 index 0000000..0ec3034 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png new file mode 100644 index 0000000..e9f5fea Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png new file mode 100644 index 0000000..84ac32a Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png new file mode 100644 index 0000000..8953cba Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png new file mode 100644 index 0000000..0467bf1 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json new file mode 100644 index 0000000..0bedcf2 --- /dev/null +++ b/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "idiom" : "universal", + "filename" : "LaunchImage.png", + "scale" : "1x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@2x.png", + "scale" : "2x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@3x.png", + "scale" : "3x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md new file mode 100644 index 0000000..89c2725 --- /dev/null +++ b/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md @@ -0,0 +1,5 @@ +# Launch Screen Assets + +You can customize the launch screen with your own desired assets by replacing the image files in this directory. + +You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. \ No newline at end of file diff --git a/ios/Runner/Base.lproj/LaunchScreen.storyboard b/ios/Runner/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..f2e259c --- /dev/null +++ b/ios/Runner/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner/Base.lproj/Main.storyboard b/ios/Runner/Base.lproj/Main.storyboard new file mode 100644 index 0000000..f3c2851 --- /dev/null +++ b/ios/Runner/Base.lproj/Main.storyboard @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist new file mode 100644 index 0000000..ea598cb --- /dev/null +++ b/ios/Runner/Info.plist @@ -0,0 +1,49 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleDisplayName + Cims Apps + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + cims_apps + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleSignature + ???? + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSRequiresIPhoneOS + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + CADisableMinimumFrameDurationOnPhone + + UIApplicationSupportsIndirectInputEvents + + + diff --git a/ios/Runner/Runner-Bridging-Header.h b/ios/Runner/Runner-Bridging-Header.h new file mode 100644 index 0000000..308a2a5 --- /dev/null +++ b/ios/Runner/Runner-Bridging-Header.h @@ -0,0 +1 @@ +#import "GeneratedPluginRegistrant.h" diff --git a/ios/RunnerTests/RunnerTests.swift b/ios/RunnerTests/RunnerTests.swift new file mode 100644 index 0000000..86a7c3b --- /dev/null +++ b/ios/RunnerTests/RunnerTests.swift @@ -0,0 +1,12 @@ +import Flutter +import UIKit +import XCTest + +class RunnerTests: XCTestCase { + + func testExample() { + // If you add code to the Runner application, consider adding tests here. + // See https://developer.apple.com/documentation/xctest for more information about using XCTest. + } + +} diff --git a/lib/application/assets/path_assets.dart b/lib/application/assets/path_assets.dart new file mode 100644 index 0000000..01a9b0b --- /dev/null +++ b/lib/application/assets/path_assets.dart @@ -0,0 +1,25 @@ +class PathAssets { + PathAssets._(); + + /// LOGO + static const String iconSplashRight = 'assets/icons/splash-right.png'; + static const String iconSplashLeft = 'assets/icons/splash-left.png'; + static const String iconReksadana = 'assets/icons/icon-reksadana.png'; + static const String iconOjk = 'assets/icons/icon-ojk.png'; + static const String iconInklusi = 'assets/icons/icon-inklusi.png'; + static const String iconGoogle = 'assets/icons/icon-google.png'; + static const String icon1 = 'assets/icons/icon-1.png'; + static const String iconConnect = 'assets/icons/icon-connect.png'; + + /// IMAGE + static const String imgSplashLogo = 'assets/images/splash-logo.png'; + static const String imgRegis = 'assets/images/img-registration.png'; + static const String imgEmail = 'assets/images/img-email.png'; + static const String imgDashboard = 'assets/images/img-dashboard.png'; + static const String imgSelfieClear = 'assets/images/img-selfie-clear.png'; + static const String imgSelfieBlur = 'assets/images/img-selfie-blur.png'; + static const String imgKtpLight = 'assets/images/img-ktp-light.png'; + static const String imgKtpCropped = 'assets/images/img-ktp-cropped.png'; + static const String imgKtpClear = 'assets/images/img-ktp-clear.png'; + static const String imgKtpBlur = 'assets/images/img-ktp-blur.png'; +} diff --git a/lib/application/component/button/button_view.dart b/lib/application/component/button/button_view.dart new file mode 100644 index 0000000..19799b6 --- /dev/null +++ b/lib/application/component/button/button_view.dart @@ -0,0 +1,134 @@ +import 'package:cims_apps/application/theme/color_palette.dart'; +import 'package:cims_apps/core/utils/size_config.dart'; +import 'package:flutter/material.dart'; + +class ButtonView extends StatelessWidget { + final String name; + final VoidCallback onPressed; + final Widget? prefixIcon, suffixIcon; + final double? height, width, widthSuffix, widthPrefix, marginVertical; + final EdgeInsetsGeometry? contentPadding; + final bool isSecondaryColor, isOutlined, heightWrapContent, disabled; + final Color? backgroundColor, textColor; + final MainAxisAlignment? mainAxisAlignmentContent; + // final _widthBtn = SizeConfig.screenWidth / 1.5; + final _widthBtn = SizeConfig.width * .9; + // final _heightBtn = SizeConfig.screenHeight / 12; + final _heightBtn = SizeConfig.height * .07; + final FontWeight textWeight; + final double? textSize, sizeBorderRadius; + final int? maxLines; + + ButtonView( + {super.key, + required this.name, + required this.onPressed, + this.prefixIcon, + this.suffixIcon, + this.widthPrefix, + this.widthSuffix, + this.height, + this.width, + this.contentPadding, + this.backgroundColor, + this.textColor, + this.textWeight = FontWeight.bold, + this.textSize, + this.mainAxisAlignmentContent, + this.disabled = false, + this.heightWrapContent = false, + this.isSecondaryColor = false, + this.isOutlined = false, + this.maxLines = 2, + this.sizeBorderRadius, + this.marginVertical}) + : assert( + suffixIcon == null || prefixIcon == null, + "Cannot provide both a suffixIcon and a prefixIcon, select one", + ); + + @override + Widget build(BuildContext context) { + final color = Theme.of(context).colorScheme; + final widthSuffix = + this.widthSuffix ?? (heightWrapContent ? width! / 4.7 : _widthBtn / 16); + final widthPrefix = + this.widthPrefix ?? (heightWrapContent ? width! / 4.7 : _widthBtn / 16); + + return Container( + margin: EdgeInsets.symmetric(vertical: marginVertical ?? 32.0), + width: width ?? _widthBtn, + height: heightWrapContent ? null : height ?? _heightBtn, + child: ElevatedButton( + style: ElevatedButton.styleFrom( + disabledBackgroundColor: isOutlined ? Colors.white : color.surface, + padding: contentPadding, + backgroundColor: backgroundColor ?? + (isOutlined + ? Colors.white + : isSecondaryColor + ? ColorPalette.grey + : ColorPalette.primary), + elevation: 0, + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(sizeBorderRadius ?? 48), + side: isOutlined + ? BorderSide( + color: disabled + ? color.surface + : isSecondaryColor + ? ColorPalette.greyBorder + : ColorPalette.primary, + ) + : BorderSide.none, + ), + ), + onPressed: disabled ? null : onPressed, + child: Row( + mainAxisAlignment: mainAxisAlignmentContent ?? + (prefixIcon != null + ? MainAxisAlignment.center + : suffixIcon != null + ? MainAxisAlignment.end + : MainAxisAlignment.center), + children: [ + if (prefixIcon != null) ...[ + prefixIcon!, + SizedBox(width: widthPrefix), + ] else + Container(), + Flexible( + child: Text( + name, + textAlign: TextAlign.center, + maxLines: maxLines, + overflow: TextOverflow.ellipsis, + style: TextStyle( + fontSize: textSize ?? 16, + fontWeight: textWeight, + color: textColor ?? + (disabled && isOutlined + ? color.primary + : disabled + ? Colors.white + : isOutlined && isSecondaryColor + ? ColorPalette.blackFont + : isOutlined + ? color.primary + : isSecondaryColor + ? Colors.white + : Colors.white), + ), + ), + ), + if (suffixIcon != null) ...[ + SizedBox(width: widthSuffix), + suffixIcon! + ] else + Container() + ], + ), + ), + ); + } +} diff --git a/lib/application/component/image/image_view.dart b/lib/application/component/image/image_view.dart new file mode 100644 index 0000000..ebfce57 --- /dev/null +++ b/lib/application/component/image/image_view.dart @@ -0,0 +1,113 @@ +import 'dart:io'; + +import 'package:cached_network_image/cached_network_image.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter_svg/flutter_svg.dart'; +import 'package:lottie/lottie.dart'; + +class ImageView extends StatelessWidget { + final dynamic image; + final double? height, width; + final BoxFit? fit; + final double? borderRadius; + final Color? loadingColor; + final Widget? loadingWidget; + final Widget? errorWidget; + + ///widget Image ini sudah di bikin fleksibel untuk menampilkan image dari File, assets dan internet + const ImageView({ + Key? key, + required this.image, + this.height, + this.width, + this.loadingWidget, + this.loadingColor, + this.fit = BoxFit.cover, + this.borderRadius, + this.errorWidget, + }) : super(key: key); + + @override + Widget build(BuildContext context) { + final errWidget = errorWidget ?? + Icon( + Icons.image_not_supported_outlined, + size: fit == BoxFit.fitHeight ? height : width, + color: Colors.grey, + ); + if (image is String) { + var image = this.image as String; + if (image.isNotEmpty) { + if (image.startsWith("https") || image.startsWith("http")) { + if (image.endsWith(".svg")) { + return SvgPicture.network( + image, + fit: BoxFit.fitWidth, + width: width, + height: height, + ); + } + return ClipRRect( + borderRadius: BorderRadius.circular(borderRadius ?? 0.0), + child: CachedNetworkImage( + imageUrl: image, + width: width, + height: height, + fit: fit, + placeholder: (context, url) { + return loadingWidget ?? + Center( + child: CircularProgressIndicator( + color: loadingColor, + ), + ); + }, + errorWidget: (context, _, x) { + return errWidget; + }, + ), + ); + } else if (image.startsWith("assets")) { + if (image.endsWith(".json")) { + return LottieBuilder.asset( + image, + height: height, + width: width, + ); + } + // handle svg from assets + if (image.endsWith('.svg')) { + return SvgPicture.asset( + image, + fit: BoxFit.fitWidth, + width: width, + height: height, + ); + } + + return ClipRRect( + borderRadius: BorderRadius.circular(borderRadius ?? 0.0), + child: Image.asset( + image, + height: height, + width: width, + fit: fit, + ), + ); + } + } + } + if (image is File) { + return ClipRRect( + borderRadius: BorderRadius.circular(borderRadius ?? 0.0), + child: Image.file( + image, + height: height, + width: width, + fit: fit, + ), + ); + } + return errWidget; + } +} diff --git a/lib/application/component/text_caption/text_caption.dart b/lib/application/component/text_caption/text_caption.dart new file mode 100644 index 0000000..8a5d57b --- /dev/null +++ b/lib/application/component/text_caption/text_caption.dart @@ -0,0 +1,45 @@ +import 'package:cims_apps/application/theme/color_palette.dart'; +import 'package:flutter/material.dart'; + +class TextCaption extends StatelessWidget { + final String title, subtitle; + const TextCaption({ + Key? key, + required this.title, + this.subtitle = '', + }) : super(key: key); + + @override + Widget build(BuildContext context) { + return Padding( + padding: const EdgeInsets.only(bottom: 32.0), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + Text( + title, + style: const TextStyle( + fontSize: 24, + fontWeight: FontWeight.w700, + color: ColorPalette.slate800, + ), + ), + subtitle.isNotEmpty + ? Padding( + padding: const EdgeInsets.only(top: 8.0), + child: Text( + subtitle, + style: const TextStyle( + fontSize: 16, + fontWeight: FontWeight.w500, + color: ColorPalette.slate800, + ), + ), + ) + : const SizedBox(), + ], + ), + ); + } +} diff --git a/lib/application/component/text_form/text_form_view.dart b/lib/application/component/text_form/text_form_view.dart new file mode 100644 index 0000000..a533305 --- /dev/null +++ b/lib/application/component/text_form/text_form_view.dart @@ -0,0 +1,195 @@ +import 'package:cims_apps/application/theme/color_palette.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter/services.dart'; +import 'package:remove_emoji_input_formatter/remove_emoji_input_formatter.dart'; + +class TextFormView extends StatelessWidget { + final String name; + final String? helperText; + final String? initialValue; + final VoidCallback? onTap; + final VoidCallback? onSubmit; + final bool enabled; + final bool readOnly; + final String? hintText, errorText; + final TextEditingController? ctrl; + final Widget? suffixIcon, suffixLable; + final Widget? prefixIcon; + final TextInputType? keyboardType; + final FormFieldValidator? validator; + final bool obscureText; + final int? maxLength; + final ValueChanged? onChanged; + final List? inputFormatters; + final TextStyle? errorStyle, hintTextStyle; + final _borderRadius = const BorderRadius.all(Radius.circular(10)); + final Color? enabledborderColor; + final Color? focusedBorderColor; + final bool textrea, isTextAlignCenter; + final Widget? trailingTitleWidget; + final BoxConstraints? suffixIconConstraints; + final BoxConstraints? preffixIconConstraints; + final bool disableColor; + final Color? disabledborderColor; + final bool? enableInteractiveSelection; + final Color? fontColorDisabled; + final FocusNode? focusNode; + + // ignore: prefer_const_constructors_in_immutables + TextFormView( + {Key? key, + required this.name, + this.helperText, + this.onTap, + this.fontColorDisabled, + this.enabledborderColor, + this.disabledborderColor, + this.initialValue, + this.enabled = true, + this.readOnly = false, + this.obscureText = false, + this.hintText, + this.hintTextStyle, + this.suffixIcon, + this.suffixLable, + this.prefixIcon, + this.keyboardType, + this.ctrl, + this.focusedBorderColor, + this.validator, + this.maxLength, + this.onChanged, + this.inputFormatters, + this.onSubmit, + this.textrea = false, + this.errorText, + this.errorStyle, + this.trailingTitleWidget, + this.suffixIconConstraints, + this.preffixIconConstraints, + this.disableColor = false, + this.enableInteractiveSelection = true, + this.focusNode, + this.isTextAlignCenter = false}) + : super(key: key); + + @override + Widget build(BuildContext context) { + if (inputFormatters != null && maxLength != null) { + inputFormatters?.add(LengthLimitingTextInputFormatter(maxLength)); + } + return Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Row( + mainAxisAlignment: MainAxisAlignment.start, + children: [ + name.isNotEmpty + ? validator != null + ? Row( + mainAxisAlignment: MainAxisAlignment.start, + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + name, + style: const TextStyle( + fontSize: 16, + color: ColorPalette.greyLight, + ), + ), + suffixLable ?? + const Text( + " * ", + style: TextStyle( + fontSize: 16, + color: Colors.red, + ), + ), + ], + ) + : Text( + name, + style: const TextStyle( + fontSize: 16, + ), + ) + : const SizedBox(), + trailingTitleWidget ?? const SizedBox(), + ], + ), + const SizedBox(height: 8.0), + TextFormField( + focusNode: focusNode, + onTapOutside: (event) => FocusScope.of(context).unfocus(), + minLines: textrea ? 8 : 1, + maxLines: textrea ? null : 1, + initialValue: initialValue, + enabled: enabled, + controller: ctrl, + // maxLength: maxLength, + keyboardType: keyboardType, + onTap: onTap, + onEditingComplete: onSubmit, + style: TextStyle( + fontWeight: FontWeight.bold, + fontSize: 14, + color: fontColorDisabled ?? Colors.black, + ), + readOnly: readOnly, + validator: validator, + obscureText: obscureText, + onChanged: onChanged, + inputFormatters: inputFormatters ?? + [ + RemoveEmojiInputFormatter(), + if (maxLength != null) + LengthLimitingTextInputFormatter(maxLength) + ], + enableInteractiveSelection: enableInteractiveSelection, + textAlign: isTextAlignCenter ? TextAlign.center : TextAlign.left, + decoration: InputDecoration( + helperText: helperText, + errorStyle: errorStyle, + errorText: errorText, + errorMaxLines: 2, + hintStyle: hintTextStyle ?? + const TextStyle( + fontSize: 14, + color: Colors.grey, + fontWeight: FontWeight.normal, + ), + isDense: true, + hintText: hintText, + filled: true, + fillColor: enabled && disableColor == false + ? Colors.white + : const Color.fromARGB(255, 233, 236, 239), + disabledBorder: OutlineInputBorder( + borderRadius: _borderRadius, + borderSide: BorderSide( + color: disabledborderColor ?? ColorPalette.greyFont, + ), + ), + enabledBorder: OutlineInputBorder( + borderRadius: _borderRadius, + borderSide: BorderSide( + color: enabledborderColor ?? ColorPalette.greyBase, + ), + ), + focusedBorder: OutlineInputBorder( + borderRadius: _borderRadius, + borderSide: BorderSide( + color: focusedBorderColor ?? ColorPalette.greyBase, + ), + ), + border: OutlineInputBorder(borderRadius: _borderRadius), + suffixIcon: suffixIcon, + prefixIcon: prefixIcon, + suffixIconConstraints: suffixIconConstraints, + prefixIconConstraints: preffixIconConstraints, + ), + ) + ], + ); + } +} diff --git a/lib/application/theme/color_palette.dart b/lib/application/theme/color_palette.dart new file mode 100644 index 0000000..724bd85 --- /dev/null +++ b/lib/application/theme/color_palette.dart @@ -0,0 +1,77 @@ +import 'package:flutter/material.dart'; + +class ColorPalette { + ColorPalette._(); + + static const Color neutral10 = Color(0xFFFFFFFF); + static const Color neutral20 = Color(0xFFF5F5F5); + static const Color neutral30 = Color(0xFFEDEDED); + static const Color neutral40 = Color(0xFFE0E0E0); + static const Color neutral50 = Color(0xFFC2C2C2); + static const Color neutral60 = Color(0xFF9E9E9E); + static const Color neutral70 = Color(0xFF757575); + static const Color neutral80 = Color(0xFF616161); + static const Color neutral90 = Color(0xFF404040); + static const Color neutral100 = Color(0xFF0A0A0A); + static const Color white = Color(0xFFFFFFFF); + static const Color secondary = Color.fromARGB(255, 254, 194, 15); + static const Color underGreen = Color(0xFF005539); + static const Color appBarItemColor = Color(0xFF1F1D20); + static const Color primary = Color(0xff2563EB); + static const Color secondaryGold = Color(0xFFC49B40); + static const Color crem = Color(0xFFFEF5DF); + static const Color crem2 = Color(0xFFF5EBD4); + static const Color greyInactive = Color(0xFFAEAEAE); + // static const Color greyDarker = Color(0xFF252525); + static const Color greys = Color(0xFF4E4E4E); + static const Color greySecond = Color(0xFF565656); + // static const Color greyBase = Color(0xFF898989); + // static const Color greyLight = Color(0xFFD0D0D0); + static const Color greyWhite = Color(0xFFF4F4F4); + static const Color pink = Color(0xFFFFCCDF); + static const Color blueLight = Color(0xFFDBEBFF); + static const Color tussock = Color(0xFF4F3F1D); + // static const Color tussockGold = Color(0xFFF39F1E); + static const Color linearGradient1 = Color(0xFFCBA143); + static const Color linearGradient2 = Color(0xFFF8D5A1); + static const Color yellowLight = Color(0xFFFFE6AD); + static const Color orange = Color(0xFFF2994A); + static const Color red = Color(0xFFFF000A); + static const Color fontGreyProfile = Color(0xFF444444); + static const Color blackFont = Color(0xFF1F1D20); + static const Color colorBgMultiBahasaInProfile = + Color.fromARGB(30, 188, 188, 188); + static const Color colorSwitchButtonActive = Color(0xFF3EB290); + static const Color greyFont = Color(0xFF515050); + static const Color blueGrey = Color(0xFFFAFCFF); + static const Color grey = Color(0xFFE8EEF7); + static const Color greyLights = Color(0xFFF7F7F8); + static const Color disable = Color(0xFF828282); + + static const Color greyDarker = Color(0xFF252525); + static Color greyDark = const Color(0xFF4E4E4E).withOpacity(0.7); + static const Color greyBase = Color(0xFF898989); + static const Color greyLight = Color(0xFF646E82); + static const Color greyLighter = Color(0xFFFFFFFF); + static const Color neroLight = Color(0xFFF2F2F2); + static const Color neroLightest = Color(0xFFFAFAFA); + static const Color purple = Color(0xFFDDCEFF); + + static const Color positive = Color(0xFFE4F5ED); + static const Color negative = Color(0xFFFFCCDF); + static const Color neutral = Color(0xFFDBEBFF); + static const Color warning = Color(0xFFFFF5BF); + static const Color bgGold = Color(0xFFF2C94C); + static const Color tussockGold = Color(0xFFF39F1E); + static const Color greyBorder = Color(0xFFE4E7EE); + static const Color forrestLight = Color(0xFF00BCAC); + static const Color forrestBase = Color(0xFF006D64); + static const Color greyDisable = Color(0xFFDBDDE3); + static const Color greyBorderNeutrals = Color(0xFFD0D7E6); + static const Color greyBackground = Color(0xFFF8F9FB); + static const Color chathams = Color(0xFF081731); + static const Color chathamsBlue = Color(0xFF285BB9); + static const Color background = Color(0xFFDADADA); + static const Color backgroundBlueLight = Color(0xFFEBF3FD); + static const Color slate800 = Color(0xFF1E293B); +} diff --git a/lib/core/route/base_route.dart b/lib/core/route/base_route.dart new file mode 100644 index 0000000..b465072 --- /dev/null +++ b/lib/core/route/base_route.dart @@ -0,0 +1,11 @@ +import 'package:flutter/material.dart'; + +class BaseRoute { + String routeName; + Widget clazz; + + BaseRoute({ + required this.routeName, + required this.clazz, + }); +} diff --git a/lib/core/route/route.dart b/lib/core/route/route.dart new file mode 100644 index 0000000..eb1ecbf --- /dev/null +++ b/lib/core/route/route.dart @@ -0,0 +1,62 @@ +import 'package:cims_apps/features/splash_screen.dart'; +import 'package:cims_apps/routes/all_route.dart'; +import 'package:flutter/material.dart'; + +enum RouteType { push, pushReplace, pushRemove } + +const initialRoute = SplashScreen.routeName; + +Route? generateRoutes(RouteSettings settings) { + AllRoute().key(); + return MaterialPageRoute( + builder: (context) => + AllRoute.allRouteMap[settings.name]?.clazz ?? const SizedBox(), + settings: settings); +} + +Future routePush( + BuildContext context, { + RouteType? routeType, + Object? arguments, + required Widget page, +}) { + var pageRoute = MaterialPageRoute( + builder: (context) => page, + settings: RouteSettings(name: "/${page.toString()}", arguments: arguments), + ); + if (routeType == RouteType.pushReplace) { + return Navigator.pushReplacement( + context, + pageRoute, + result: ModalRoute.of(context)?.currentResult, + ); + } + if (routeType == RouteType.pushRemove) { + return Navigator.of(context).pushAndRemoveUntil( + pageRoute, + (route) => false, + ); + } + + return Navigator.push(context, pageRoute); +} + +Future routeNamed( + BuildContext context, { + RouteType? routeType, + Object? arguments, + required String routeName, +}) { + if (routeType == RouteType.pushReplace) { + return Navigator.pushReplacementNamed(context, routeName, + arguments: arguments, result: ModalRoute.of(context)?.currentResult); + } + if (routeType == RouteType.pushRemove) { + return Navigator.of(context).pushNamedAndRemoveUntil( + routeName, + (route) => false, + arguments: arguments, + ); + } + return Navigator.pushNamed(context, routeName); +} diff --git a/lib/core/route/route_observer.dart b/lib/core/route/route_observer.dart new file mode 100644 index 0000000..73aedb0 --- /dev/null +++ b/lib/core/route/route_observer.dart @@ -0,0 +1,37 @@ +import 'dart:developer'; + +import 'package:flutter/foundation.dart'; +import 'package:flutter/material.dart'; + +class CoreRouteObserver extends NavigatorObserver { + @override + void didPush(Route route, Route? previousRoute) { + if (kDebugMode) { + log("\nRoute Name: ${route.settings.name} - push\n"); + } + } + + @override + void didPop(Route route, Route? previousRoute) { + super.didPop(route, previousRoute); + if (kDebugMode) { + log("\nRoute Name: ${route.settings.name} - pop\n"); + } + } + + @override + void didRemove(Route route, Route? previousRoute) { + if (kDebugMode) { + log("\nRoute Name: ${route.settings.name} - remove\n"); + } + } + + @override + void didReplace({Route? newRoute, Route? oldRoute}) { + if (kDebugMode) { + if (newRoute != null) { + log("\nRoute Name: ${newRoute.settings.name} - replace\n"); + } + } + } +} diff --git a/lib/core/utils/size_config.dart b/lib/core/utils/size_config.dart new file mode 100644 index 0000000..e429244 --- /dev/null +++ b/lib/core/utils/size_config.dart @@ -0,0 +1,15 @@ +import 'package:flutter/material.dart'; + +class SizeConfig { + //initOnStartUp + static MediaQueryData mediaQuery = const MediaQueryData(); + static bool isMobile = true; + static double width = 0; + static double height = 0; + + static void initOnStartUp(BuildContext context) { + mediaQuery = MediaQuery.of(context); + width = mediaQuery.size.width; + height = mediaQuery.size.height; + } +} diff --git a/lib/features/auth/registration/view/initial_registration_step.dart b/lib/features/auth/registration/view/initial_registration_step.dart new file mode 100644 index 0000000..7c0492c --- /dev/null +++ b/lib/features/auth/registration/view/initial_registration_step.dart @@ -0,0 +1,207 @@ +import 'package:cims_apps/application/assets/path_assets.dart'; +import 'package:cims_apps/application/component/button/button_view.dart'; +import 'package:cims_apps/application/component/image/image_view.dart'; +import 'package:cims_apps/application/theme/color_palette.dart'; +import 'package:cims_apps/core/route/route.dart'; +import 'package:cims_apps/core/utils/size_config.dart'; +import 'package:cims_apps/features/auth/registration/view/submission_data/submission_parent.dart'; +import 'package:flutter/material.dart'; + +class InitialRegistrationStep extends StatelessWidget { + static const routeName = '/InitialRegistrationStep'; + const InitialRegistrationStep({Key? key}) : super(key: key); + + Widget _stepItem({ + required String description, + bool isActive = false, + bool isDone = false, + bool isLast = false, + }) { + return Row( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Column( + crossAxisAlignment: CrossAxisAlignment.center, + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Container( + height: 30, + width: 30, + decoration: BoxDecoration( + color: isDone ? ColorPalette.primary : Colors.white, + border: Border.all( + width: 2.0, + color: isActive || isDone + ? ColorPalette.primary + : Colors.grey), + shape: BoxShape.circle, + ), + child: isDone + ? const Align( + alignment: Alignment.center, + child: Icon( + Icons.done_outlined, + color: Colors.white, + ), + ) + : const SizedBox(), + ), + if (!isLast) + ConstrainedBox( + constraints: BoxConstraints.expand( + width: 0.0, height: SizeConfig.width * .07), + child: Padding( + padding: const EdgeInsets.symmetric(vertical: 4.0), + child: VerticalDivider( + color: isDone ? ColorPalette.primary : Colors.grey, + thickness: 2.0, + ), + ), + ), + ], + ), + const SizedBox( + width: 8.0, + ), + Expanded( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + const SizedBox( + height: 8.0, + ), + Text( + description, + style: TextStyle( + fontSize: 14, + fontWeight: FontWeight.w600, + color: + isActive ? ColorPalette.primary : ColorPalette.slate800, + ), + ), + ], + ), + ), + ], + ); + } + + @override + Widget build(BuildContext context) { + List listStep = [ + { + 'desc': 'Personal Data', + 'isActive': true, + 'isDone': true, + 'isLast': false, + }, + { + 'desc': 'Email', + 'isActive': true, + 'isDone': false, + 'isLast': false, + }, + { + 'desc': 'Identity Card Photo ', + 'isActive': false, + 'isDone': false, + 'isLast': false, + }, + { + 'desc': 'Identity Card Photo ', + 'isActive': false, + 'isDone': false, + 'isLast': false, + }, + { + 'desc': 'ID Card Data Accuracy', + 'isActive': false, + 'isDone': false, + 'isLast': false, + }, + { + 'desc': 'Bank Data', + 'isActive': false, + 'isDone': false, + 'isLast': false, + }, + { + 'desc': 'Digital Signature', + 'isActive': false, + 'isDone': false, + 'isLast': false, + }, + { + 'desc': 'Know your Risk Profile', + 'isActive': false, + 'isDone': false, + 'isLast': false, + }, + { + 'desc': 'Completed Registration', + 'isActive': false, + 'isDone': false, + 'isLast': true, + }, + ]; + + return Scaffold( + appBar: AppBar( + title: const Text('Registration'), + ), + body: Container( + padding: const EdgeInsets.symmetric(horizontal: 24.0), + child: Column( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + ImageView( + image: PathAssets.imgRegis, + width: SizeConfig.width * .4, + ), + SizedBox( + width: SizeConfig.width * .45, + child: const Text( + "It's time for your registration", + maxLines: 2, + style: TextStyle( + fontWeight: FontWeight.w700, + fontSize: 18, + color: ColorPalette.slate800), + ), + ) + ], + ), + SizedBox( + height: SizeConfig.height * .6, + child: SingleChildScrollView( + scrollDirection: Axis.vertical, + child: Column( + children: listStep + .asMap() + .entries + .map((e) => _stepItem( + description: '${e.value['desc']}', + isActive: e.value['isActive'], + isDone: e.value['isDone'], + isLast: e.value['isLast'], + )) + .toList(), + ), + ), + ), + ButtonView( + name: 'Let’s Start', + marginVertical: 8.0, + onPressed: () { + routePush(context, page: const SubmissionParent()); + }, + ) + ], + ), + ), + ); + } +} diff --git a/lib/features/auth/registration/view/registration_view.dart b/lib/features/auth/registration/view/registration_view.dart new file mode 100644 index 0000000..4995bec --- /dev/null +++ b/lib/features/auth/registration/view/registration_view.dart @@ -0,0 +1,66 @@ +import 'package:cims_apps/application/component/button/button_view.dart'; +import 'package:cims_apps/application/component/text_caption/text_caption.dart'; +import 'package:cims_apps/application/component/text_form/text_form_view.dart'; +import 'package:cims_apps/core/route/route.dart'; +import 'package:cims_apps/features/auth/registration/view/initial_registration_step.dart'; +import 'package:cims_apps/features/bottom_navigation_view.dart'; +import 'package:flutter/gestures.dart'; +import 'package:flutter/material.dart'; + +class RegistrationView extends StatelessWidget { + static const routName = '/RegistrationView'; + const RegistrationView({Key? key}) : super(key: key); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('Sign Up'), + ), + body: Container( + padding: const EdgeInsets.all(24.0), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + const TextCaption( + title: 'Enter your phone number', + subtitle: 'Input your registered phone number', + ), + TextFormView(name: 'Phone Number'), + ButtonView( + name: 'Next', + onPressed: () { + routePush(context, page: const InitialRegistrationStep()); + }, + ), + Align( + alignment: Alignment.center, + child: RichText( + textAlign: TextAlign.center, + text: TextSpan(children: [ + const TextSpan( + text: 'Already have an account? ', + style: TextStyle( + color: Colors.black, + decoration: TextDecoration.underline, + ), + ), + TextSpan( + recognizer: TapGestureRecognizer() + ..onTap = () { + print('object'); + }, + text: ' Sign In', + style: const TextStyle( + color: Colors.blue, + ), + ), + ]), + ), + ) + ], + ), + ), + ); + } +} diff --git a/lib/features/auth/registration/view/submission_data/submission_parent.dart b/lib/features/auth/registration/view/submission_data/submission_parent.dart new file mode 100644 index 0000000..12d67a3 --- /dev/null +++ b/lib/features/auth/registration/view/submission_data/submission_parent.dart @@ -0,0 +1,127 @@ +import 'package:cims_apps/application/component/button/button_view.dart'; +import 'package:cims_apps/application/theme/color_palette.dart'; +import 'package:cims_apps/core/utils/size_config.dart'; +import 'package:cims_apps/features/auth/registration/view/submission_data/submit_email.dart'; +import 'package:cims_apps/features/auth/registration/view/submission_data/submit_personal_data.dart'; +import 'package:flutter/material.dart'; + +class SubmissionParent extends StatefulWidget { + static const routeName = '/SubmissionParent'; + const SubmissionParent({Key? key}) : super(key: key); + + @override + State createState() => _SubmissionParentState(); +} + +class _SubmissionParentState extends State { + int _currentStep = 1; + final int _stepAmount = 9; + Widget _stepItem({bool isCurrentStep = false, bool isDone = false}) { + return GestureDetector( + onTap: () { + setState(() { + if (_currentStep > 1) { + _currentStep--; + } else if (_currentStep == 1) { + _currentStep++; + } + }); + }, + child: Container( + margin: const EdgeInsets.only(right: 4.0, left: 4.0), + height: 6, + width: SizeConfig.width * .08, + decoration: BoxDecoration( + color: isCurrentStep || isDone + ? ColorPalette.primary + : ColorPalette.greyBorderNeutrals, + borderRadius: BorderRadius.circular(50), + ), + ), + ); + } + + _content(int index) { + switch (index) { + case 1: + return const SubmitPersonalData(); + case 2: + return const SubmitEmail(); + case 3: + return Container( + child: Text("Step 3"), + ); + case 4: + return Container( + child: Text("Step 4"), + ); + case 5: + return Container( + child: Text("Step 5"), + ); + case 6: + return Container( + child: Text("Step 6"), + ); + case 7: + return Container( + child: Text("Step 7"), + ); + case 8: + return Container( + child: Text("Step 8"), + ); + case 9: + return Container( + child: Text("Step 9"), + ); + } + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('Registration'), + ), + body: Stack( + children: [ + Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Padding( + padding: const EdgeInsets.symmetric( + horizontal: 16.0, vertical: 16.0), + child: Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: List.generate( + _stepAmount, + (index) => _stepItem( + isCurrentStep: _currentStep == index + 1, + ), + ), + ), + ), + Container( + padding: const EdgeInsets.symmetric(horizontal: 16.0), + child: _content(_currentStep), + ) + ], + ), + Align( + alignment: Alignment.bottomCenter, + child: ButtonView( + name: 'Next', + marginVertical: 16.0, + onPressed: () { + setState(() { + _currentStep++; + }); + }, + ), + ) + ], + ), + ); + } +} diff --git a/lib/features/auth/registration/view/submission_data/submit_email.dart b/lib/features/auth/registration/view/submission_data/submit_email.dart new file mode 100644 index 0000000..c5d086c --- /dev/null +++ b/lib/features/auth/registration/view/submission_data/submit_email.dart @@ -0,0 +1,21 @@ +import 'package:cims_apps/application/component/text_caption/text_caption.dart'; +import 'package:cims_apps/application/component/text_form/text_form_view.dart'; +import 'package:flutter/material.dart'; + +class SubmitEmail extends StatelessWidget { + const SubmitEmail({Key? key}) : super(key: key); + + @override + Widget build(BuildContext context) { + return Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + const TextCaption(title: 'Enter your e-mail'), + TextFormView( + name: 'E-mail Address', + hintText: 'Input e-mail address', + ), + ], + ); + } +} diff --git a/lib/features/auth/registration/view/submission_data/submit_personal_data.dart b/lib/features/auth/registration/view/submission_data/submit_personal_data.dart new file mode 100644 index 0000000..bf33455 --- /dev/null +++ b/lib/features/auth/registration/view/submission_data/submit_personal_data.dart @@ -0,0 +1,16 @@ +import 'package:cims_apps/application/component/text_caption/text_caption.dart'; +import 'package:flutter/material.dart'; + +class SubmitPersonalData extends StatelessWidget { + const SubmitPersonalData({Key? key}) : super(key: key); + + @override + Widget build(BuildContext context) { + return Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + TextCaption(title: 'Your personal details'), + ], + ); + } +} diff --git a/lib/features/bottom_navigation_view.dart b/lib/features/bottom_navigation_view.dart new file mode 100644 index 0000000..239473e --- /dev/null +++ b/lib/features/bottom_navigation_view.dart @@ -0,0 +1,71 @@ +import 'package:cims_apps/application/theme/color_palette.dart'; +import 'package:flutter/material.dart'; + +class BottomNavigationView extends StatefulWidget { + const BottomNavigationView({Key? key}) : super(key: key); + + @override + State createState() => _BottomNavigationViewState(); +} + +class _BottomNavigationViewState extends State { + int _selectedIndex = 0; + + @override + Widget build(BuildContext context) { + ///TODO: masukan pagenya dilistWidget ini + List listWidget = [ + Container( + color: Colors.amberAccent, + ), + Container( + color: Colors.redAccent, + ), + Container(), + Container(), + Container(), + Container(), + ]; + + List listNavigation = const [ + BottomNavigationBarItem( + icon: Icon(Icons.home_outlined), + label: 'Home', + ), + BottomNavigationBarItem( + icon: Icon(Icons.search), + label: 'Search', + ), + BottomNavigationBarItem( + icon: Icon(Icons.compare_arrows), + label: 'Transaction', + ), + BottomNavigationBarItem( + icon: Icon(Icons.pie_chart_rounded), + label: 'Portfolio', + ), + BottomNavigationBarItem( + icon: Icon(Icons.person), + label: 'Profile', + ), + ]; + + return Scaffold( + body: listWidget[_selectedIndex], + bottomNavigationBar: BottomNavigationBar( + onTap: (value) { + setState(() { + _selectedIndex = value; + }); + }, + currentIndex: _selectedIndex, + items: listNavigation, + showUnselectedLabels: true, + selectedItemColor: ColorPalette.primary, + unselectedItemColor: Colors.black, + selectedLabelStyle: const TextStyle(color: ColorPalette.primary), + unselectedLabelStyle: const TextStyle(color: Colors.black), + ), + ); + } +} diff --git a/lib/features/dashboard/dashboard_public/view/dashboard_public_view.dart b/lib/features/dashboard/dashboard_public/view/dashboard_public_view.dart new file mode 100644 index 0000000..d32f1be --- /dev/null +++ b/lib/features/dashboard/dashboard_public/view/dashboard_public_view.dart @@ -0,0 +1,116 @@ +import 'package:cims_apps/application/assets/path_assets.dart'; +import 'package:cims_apps/application/component/button/button_view.dart'; +import 'package:cims_apps/application/component/image/image_view.dart'; +import 'package:cims_apps/application/theme/color_palette.dart'; +import 'package:cims_apps/core/route/route.dart'; +import 'package:cims_apps/core/utils/size_config.dart'; +import 'package:cims_apps/features/auth/registration/view/registration_view.dart'; +import 'package:flutter/material.dart'; + +class DashboardPublicView extends StatelessWidget { + static const routeName = '/DashboardPublicView'; + const DashboardPublicView({Key? key}) : super(key: key); + + Widget _caption() { + return Column( + children: [ + const Text( + 'Welcome!', + style: TextStyle( + color: ColorPalette.primary, + fontWeight: FontWeight.w700, + fontSize: 28), + ), + SizedBox( + width: SizeConfig.width * .8, + child: const Text( + 'We serve the management of Third Party investment funds in fulfilling financial goals.', + textAlign: TextAlign.center, + style: TextStyle(color: ColorPalette.greyFont), + ), + ), + ], + ); + } + + @override + Widget build(BuildContext context) { + return Scaffold( + body: Container( + padding: const EdgeInsets.symmetric( + vertical: 32.0, + horizontal: 24.0, + ), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + ImageView( + image: PathAssets.icon1, + width: SizeConfig.width * .35, + ), + Align( + alignment: Alignment.center, + heightFactor: 1, + child: _caption()), + Align( + alignment: Alignment.center, + child: ImageView( + image: PathAssets.imgDashboard, + width: SizeConfig.width * .7, + ), + ), + Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + ButtonView( + name: 'Sign in', + isOutlined: true, + width: SizeConfig.width * .43, + height: SizeConfig.height * .06, + onPressed: () {}, + ), + ButtonView( + name: 'Sign Up', + width: SizeConfig.width * .43, + height: SizeConfig.height * .06, + onPressed: () { + routePush(context, page: const RegistrationView()); + }, + ), + ], + ), + const ImageView(image: PathAssets.iconConnect), + ButtonView( + name: 'Google', + isSecondaryColor: true, + isOutlined: true, + prefixIcon: const ImageView( + image: PathAssets.iconGoogle, + width: 26, + ), + onPressed: () {}, + ), + Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + ImageView( + image: PathAssets.iconOjk, + width: SizeConfig.width * .20, + ), + ImageView( + image: PathAssets.iconInklusi, + width: SizeConfig.width * .20, + ), + ImageView( + image: PathAssets.iconReksadana, + width: SizeConfig.width * .20, + ), + ], + ) + ], + ), + ), + ); + } +} diff --git a/lib/features/splash_screen.dart b/lib/features/splash_screen.dart new file mode 100644 index 0000000..277276b --- /dev/null +++ b/lib/features/splash_screen.dart @@ -0,0 +1,55 @@ +import 'package:cims_apps/application/assets/path_assets.dart'; +import 'package:cims_apps/application/component/image/image_view.dart'; +import 'package:cims_apps/core/route/route.dart'; +import 'package:cims_apps/core/utils/size_config.dart'; +import 'package:cims_apps/features/dashboard/dashboard_public/view/dashboard_public_view.dart'; +import 'package:flutter/material.dart'; + +class SplashScreen extends StatefulWidget { + static const routeName = '/SplashScreen'; + const SplashScreen({Key? key}) : super(key: key); + + @override + State createState() => _SplashScreenState(); +} + +class _SplashScreenState extends State { + @override + void initState() { + Future.delayed(const Duration(seconds: 3)).then( + (value) => routePush(context, page: const DashboardPublicView()), + ); + super.initState(); + } + + @override + Widget build(BuildContext context) { + final color = Theme.of(context).colorScheme; + + return Scaffold( + backgroundColor: color.primary, + body: Stack( + children: [ + Align( + alignment: Alignment.topRight, + child: ImageView( + image: PathAssets.iconSplashRight, + width: SizeConfig.width * .25, + )), + Center( + child: ImageView( + image: PathAssets.imgSplashLogo, + width: SizeConfig.width * .6, + ), + ), + Align( + alignment: Alignment.bottomLeft, + child: ImageView( + image: PathAssets.iconSplashLeft, + width: SizeConfig.width * .25, + )), + ], + ), + ); + } +} diff --git a/lib/main.dart b/lib/main.dart new file mode 100644 index 0000000..87a7b1c --- /dev/null +++ b/lib/main.dart @@ -0,0 +1,50 @@ +import 'package:cims_apps/application/theme/color_palette.dart'; +import 'package:cims_apps/core/route/route.dart'; +import 'package:cims_apps/core/utils/size_config.dart'; +import 'package:flutter/material.dart'; + +void main() { + WidgetsFlutterBinding.ensureInitialized(); + runApp(const MyApp()); +} + +class MyApp extends StatelessWidget { + const MyApp({super.key}); + + // This widget is the root of your application. + @override + Widget build(BuildContext context) { + SizeConfig.initOnStartUp(context); + + return MaterialApp( + title: 'CIMS', + debugShowCheckedModeBanner: false, + theme: ThemeData( + appBarTheme: const AppBarTheme( + centerTitle: true, + backgroundColor: Colors.white, + elevation: 1, + foregroundColor: Colors.black, + titleTextStyle: TextStyle( + fontSize: 20, + fontWeight: FontWeight.w700, + color: ColorPalette.slate800, + )), + fontFamily: 'Manrope', + scaffoldBackgroundColor: Colors.white, + colorScheme: const ColorScheme.light().copyWith( + primary: const Color(0xff2563EB), + onPrimary: const Color(0xFFFF9130), + secondary: const Color(0xFFFECDA6), + onBackground: const Color(0xFFA9A9A9), + ), + // useMaterial3: true, + ), + initialRoute: initialRoute, + onGenerateRoute: generateRoutes, + navigatorObservers: [ + NavigatorObserver(), + ], + ); + } +} diff --git a/lib/routes/all_route.dart b/lib/routes/all_route.dart new file mode 100644 index 0000000..5821dd2 --- /dev/null +++ b/lib/routes/all_route.dart @@ -0,0 +1,22 @@ +import 'package:cims_apps/core/route/base_route.dart'; +import 'package:cims_apps/routes/dashboard/dashboard_route.dart'; + +import 'initial/initial_route.dart'; + +class AllRoute { + static Map allRouteMap = {}; + + List allRoute = [ + ...InitialRoute.listRoute, + ...DashboardRoute.listRoute, + ]; + + void key() { + if (allRouteMap.isNotEmpty) { + return; + } + for (var e in allRoute) { + allRouteMap[e.routeName] = e; + } + } +} diff --git a/lib/routes/auth/registration_route.dart b/lib/routes/auth/registration_route.dart new file mode 100644 index 0000000..e69de29 diff --git a/lib/routes/dashboard/dashboard_route.dart b/lib/routes/dashboard/dashboard_route.dart new file mode 100644 index 0000000..0c340fd --- /dev/null +++ b/lib/routes/dashboard/dashboard_route.dart @@ -0,0 +1,10 @@ +import 'package:cims_apps/core/route/base_route.dart'; +import 'package:cims_apps/features/dashboard/dashboard_public/view/dashboard_public_view.dart'; + +class DashboardRoute { + static List listRoute = [ + BaseRoute( + routeName: DashboardPublicView.routeName, + clazz: const DashboardPublicView()), + ]; +} diff --git a/lib/routes/initial/initial_route.dart b/lib/routes/initial/initial_route.dart new file mode 100644 index 0000000..b28a1eb --- /dev/null +++ b/lib/routes/initial/initial_route.dart @@ -0,0 +1,8 @@ +import 'package:cims_apps/core/route/base_route.dart'; +import 'package:cims_apps/features/splash_screen.dart'; + +class InitialRoute { + static List listRoute = [ + BaseRoute(routeName: SplashScreen.routeName, clazz: const SplashScreen()), + ]; +} diff --git a/pubspec.lock b/pubspec.lock new file mode 100644 index 0000000..c9172e4 --- /dev/null +++ b/pubspec.lock @@ -0,0 +1,501 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + archive: + dependency: transitive + description: + name: archive + sha256: "22600aa1e926be775fa5fe7e6894e7fb3df9efda8891c73f70fb3262399a432d" + url: "https://pub.dev" + source: hosted + version: "3.4.10" + async: + dependency: transitive + description: + name: async + sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" + url: "https://pub.dev" + source: hosted + version: "2.11.0" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + cached_network_image: + dependency: "direct main" + description: + name: cached_network_image + sha256: "28ea9690a8207179c319965c13cd8df184d5ee721ae2ce60f398ced1219cea1f" + url: "https://pub.dev" + source: hosted + version: "3.3.1" + cached_network_image_platform_interface: + dependency: transitive + description: + name: cached_network_image_platform_interface + sha256: "9e90e78ae72caa874a323d78fa6301b3fb8fa7ea76a8f96dc5b5bf79f283bf2f" + url: "https://pub.dev" + source: hosted + version: "4.0.0" + cached_network_image_web: + dependency: transitive + description: + name: cached_network_image_web + sha256: "42a835caa27c220d1294311ac409a43361088625a4f23c820b006dd9bffb3316" + url: "https://pub.dev" + source: hosted + version: "1.1.1" + characters: + dependency: transitive + description: + name: characters + sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" + url: "https://pub.dev" + source: hosted + version: "1.3.0" + clock: + dependency: transitive + description: + name: clock + sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf + url: "https://pub.dev" + source: hosted + version: "1.1.1" + collection: + dependency: transitive + description: + name: collection + sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a + url: "https://pub.dev" + source: hosted + version: "1.18.0" + convert: + dependency: transitive + description: + name: convert + sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592" + url: "https://pub.dev" + source: hosted + version: "3.1.1" + crypto: + dependency: transitive + description: + name: crypto + sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab + url: "https://pub.dev" + source: hosted + version: "3.0.3" + cupertino_icons: + dependency: "direct main" + description: + name: cupertino_icons + sha256: d57953e10f9f8327ce64a508a355f0b1ec902193f66288e8cb5070e7c47eeb2d + url: "https://pub.dev" + source: hosted + version: "1.0.6" + fake_async: + dependency: transitive + description: + name: fake_async + sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" + url: "https://pub.dev" + source: hosted + version: "1.3.1" + ffi: + dependency: transitive + description: + name: ffi + sha256: "7bf0adc28a23d395f19f3f1eb21dd7cfd1dd9f8e1c50051c069122e6853bc878" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + file: + dependency: transitive + description: + name: file + sha256: "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c" + url: "https://pub.dev" + source: hosted + version: "7.0.0" + fixnum: + dependency: transitive + description: + name: fixnum + sha256: "25517a4deb0c03aa0f32fd12db525856438902d9c16536311e76cdc57b31d7d1" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_cache_manager: + dependency: transitive + description: + name: flutter_cache_manager + sha256: "8207f27539deb83732fdda03e259349046a39a4c767269285f449ade355d54ba" + url: "https://pub.dev" + source: hosted + version: "3.3.1" + flutter_lints: + dependency: "direct dev" + description: + name: flutter_lints + sha256: a25a15ebbdfc33ab1cd26c63a6ee519df92338a9c10f122adda92938253bef04 + url: "https://pub.dev" + source: hosted + version: "2.0.3" + flutter_svg: + dependency: "direct main" + description: + name: flutter_svg + sha256: "6ff9fa12892ae074092de2fa6a9938fb21dbabfdaa2ff57dc697ff912fc8d4b2" + url: "https://pub.dev" + source: hosted + version: "1.1.6" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + http: + dependency: transitive + description: + name: http + sha256: a2bbf9d017fcced29139daa8ed2bba4ece450ab222871df93ca9eec6f80c34ba + url: "https://pub.dev" + source: hosted + version: "1.2.0" + http_parser: + dependency: transitive + description: + name: http_parser + sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" + url: "https://pub.dev" + source: hosted + version: "4.0.2" + js: + dependency: transitive + description: + name: js + sha256: "4186c61b32f99e60f011f7160e32c89a758ae9b1d0c6d28e2c02ef0382300e2b" + url: "https://pub.dev" + source: hosted + version: "0.7.0" + lints: + dependency: transitive + description: + name: lints + sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + lottie: + dependency: "direct main" + description: + name: lottie + sha256: a93542cc2d60a7057255405f62252533f8e8956e7e06754955669fd32fb4b216 + url: "https://pub.dev" + source: hosted + version: "2.7.0" + matcher: + dependency: transitive + description: + name: matcher + sha256: "1803e76e6653768d64ed8ff2e1e67bea3ad4b923eb5c56a295c3e634bad5960e" + url: "https://pub.dev" + source: hosted + version: "0.12.16" + material_color_utilities: + dependency: transitive + description: + name: material_color_utilities + sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41" + url: "https://pub.dev" + source: hosted + version: "0.5.0" + meta: + dependency: transitive + description: + name: meta + sha256: a6e590c838b18133bb482a2745ad77c5bb7715fb0451209e1a7567d416678b8e + url: "https://pub.dev" + source: hosted + version: "1.10.0" + octo_image: + dependency: transitive + description: + name: octo_image + sha256: "45b40f99622f11901238e18d48f5f12ea36426d8eced9f4cbf58479c7aa2430d" + url: "https://pub.dev" + source: hosted + version: "2.0.0" + path: + dependency: transitive + description: + name: path + sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917" + url: "https://pub.dev" + source: hosted + version: "1.8.3" + path_drawing: + dependency: transitive + description: + name: path_drawing + sha256: bbb1934c0cbb03091af082a6389ca2080345291ef07a5fa6d6e078ba8682f977 + url: "https://pub.dev" + source: hosted + version: "1.0.1" + path_parsing: + dependency: transitive + description: + name: path_parsing + sha256: e3e67b1629e6f7e8100b367d3db6ba6af4b1f0bb80f64db18ef1fbabd2fa9ccf + url: "https://pub.dev" + source: hosted + version: "1.0.1" + path_provider: + dependency: transitive + description: + name: path_provider + sha256: b27217933eeeba8ff24845c34003b003b2b22151de3c908d0e679e8fe1aa078b + url: "https://pub.dev" + source: hosted + version: "2.1.2" + path_provider_android: + dependency: transitive + description: + name: path_provider_android + sha256: "477184d672607c0a3bf68fbbf601805f92ef79c82b64b4d6eb318cbca4c48668" + url: "https://pub.dev" + source: hosted + version: "2.2.2" + path_provider_foundation: + dependency: transitive + description: + name: path_provider_foundation + sha256: "5a7999be66e000916500be4f15a3633ebceb8302719b47b9cc49ce924125350f" + url: "https://pub.dev" + source: hosted + version: "2.3.2" + path_provider_linux: + dependency: transitive + description: + name: path_provider_linux + sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279 + url: "https://pub.dev" + source: hosted + version: "2.2.1" + path_provider_platform_interface: + dependency: transitive + description: + name: path_provider_platform_interface + sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + path_provider_windows: + dependency: transitive + description: + name: path_provider_windows + sha256: "8bc9f22eee8690981c22aa7fc602f5c85b497a6fb2ceb35ee5a5e5ed85ad8170" + url: "https://pub.dev" + source: hosted + version: "2.2.1" + petitparser: + dependency: transitive + description: + name: petitparser + sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27 + url: "https://pub.dev" + source: hosted + version: "6.0.2" + platform: + dependency: transitive + description: + name: platform + sha256: "12220bb4b65720483f8fa9450b4332347737cf8213dd2840d8b2c823e47243ec" + url: "https://pub.dev" + source: hosted + version: "3.1.4" + plugin_platform_interface: + dependency: transitive + description: + name: plugin_platform_interface + sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02" + url: "https://pub.dev" + source: hosted + version: "2.1.8" + pointycastle: + dependency: transitive + description: + name: pointycastle + sha256: "43ac87de6e10afabc85c445745a7b799e04de84cebaa4fd7bf55a5e1e9604d29" + url: "https://pub.dev" + source: hosted + version: "3.7.4" + remove_emoji_input_formatter: + dependency: "direct main" + description: + name: remove_emoji_input_formatter + sha256: "82d195984f890de7a8fea936c698848e78c1a67ccefe18db3baf9f7a3bc0177f" + url: "https://pub.dev" + source: hosted + version: "0.0.1+1" + rxdart: + dependency: transitive + description: + name: rxdart + sha256: "0c7c0cedd93788d996e33041ffecda924cc54389199cde4e6a34b440f50044cb" + url: "https://pub.dev" + source: hosted + version: "0.27.7" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.99" + source_span: + dependency: transitive + description: + name: source_span + sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" + url: "https://pub.dev" + source: hosted + version: "1.10.0" + sprintf: + dependency: transitive + description: + name: sprintf + sha256: "1fc9ffe69d4df602376b52949af107d8f5703b77cda567c4d7d86a0693120f23" + url: "https://pub.dev" + source: hosted + version: "7.0.0" + sqflite: + dependency: transitive + description: + name: sqflite + sha256: a9016f495c927cb90557c909ff26a6d92d9bd54fc42ba92e19d4e79d61e798c6 + url: "https://pub.dev" + source: hosted + version: "2.3.2" + sqflite_common: + dependency: transitive + description: + name: sqflite_common + sha256: "28d8c66baee4968519fb8bd6cdbedad982d6e53359091f0b74544a9f32ec72d5" + url: "https://pub.dev" + source: hosted + version: "2.5.3" + stack_trace: + dependency: transitive + description: + name: stack_trace + sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b" + url: "https://pub.dev" + source: hosted + version: "1.11.1" + stream_channel: + dependency: transitive + description: + name: stream_channel + sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7 + url: "https://pub.dev" + source: hosted + version: "2.1.2" + string_scanner: + dependency: transitive + description: + name: string_scanner + sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + synchronized: + dependency: transitive + description: + name: synchronized + sha256: "539ef412b170d65ecdafd780f924e5be3f60032a1128df156adad6c5b373d558" + url: "https://pub.dev" + source: hosted + version: "3.1.0+1" + term_glyph: + dependency: transitive + description: + name: term_glyph + sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 + url: "https://pub.dev" + source: hosted + version: "1.2.1" + test_api: + dependency: transitive + description: + name: test_api + sha256: "5c2f730018264d276c20e4f1503fd1308dfbbae39ec8ee63c5236311ac06954b" + url: "https://pub.dev" + source: hosted + version: "0.6.1" + typed_data: + dependency: transitive + description: + name: typed_data + sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c + url: "https://pub.dev" + source: hosted + version: "1.3.2" + uuid: + dependency: transitive + description: + name: uuid + sha256: cd210a09f7c18cbe5a02511718e0334de6559871052c90a90c0cca46a4aa81c8 + url: "https://pub.dev" + source: hosted + version: "4.3.3" + vector_math: + dependency: transitive + description: + name: vector_math + sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + web: + dependency: transitive + description: + name: web + sha256: afe077240a270dcfd2aafe77602b4113645af95d0ad31128cc02bce5ac5d5152 + url: "https://pub.dev" + source: hosted + version: "0.3.0" + win32: + dependency: transitive + description: + name: win32 + sha256: "464f5674532865248444b4c3daca12bd9bf2d7c47f759ce2617986e7229494a8" + url: "https://pub.dev" + source: hosted + version: "5.2.0" + xdg_directories: + dependency: transitive + description: + name: xdg_directories + sha256: faea9dee56b520b55a566385b84f2e8de55e7496104adada9962e0bd11bcff1d + url: "https://pub.dev" + source: hosted + version: "1.0.4" + xml: + dependency: transitive + description: + name: xml + sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226 + url: "https://pub.dev" + source: hosted + version: "6.5.0" +sdks: + dart: ">=3.2.3 <4.0.0" + flutter: ">=3.13.0" diff --git a/pubspec.yaml b/pubspec.yaml new file mode 100644 index 0000000..3ec0147 --- /dev/null +++ b/pubspec.yaml @@ -0,0 +1,93 @@ +name: cims_apps +description: "A new Flutter project." +# The following line prevents the package from being accidentally published to +# pub.dev using `flutter pub publish`. This is preferred for private packages. +publish_to: 'none' # Remove this line if you wish to publish to pub.dev + +# The following defines the version and build number for your application. +# A version number is three numbers separated by dots, like 1.2.43 +# followed by an optional build number separated by a +. +# Both the version and the builder number may be overridden in flutter +# build by specifying --build-name and --build-number, respectively. +# In Android, build-name is used as versionName while build-number used as versionCode. +# Read more about Android versioning at https://developer.android.com/studio/publish/versioning +# In iOS, build-name is used as CFBundleShortVersionString while build-number is used as CFBundleVersion. +# Read more about iOS versioning at +# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html +# In Windows, build-name is used as the major, minor, and patch parts +# of the product and file versions while build-number is used as the build suffix. +version: 1.0.0+1 + +environment: + sdk: '>=3.2.3 <4.0.0' + +# Dependencies specify other packages that your package needs in order to work. +# To automatically upgrade your package dependencies to the latest versions +# consider running `flutter pub upgrade --major-versions`. Alternatively, +# dependencies can be manually updated by changing the version numbers below to +# the latest version available on pub.dev. To see which dependencies have newer +# versions available, run `flutter pub outdated`. +dependencies: + flutter: + sdk: flutter + + + # The following adds the Cupertino Icons font to your application. + # Use with the CupertinoIcons class for iOS style icons. + cupertino_icons: ^1.0.2 + lottie: ^2.2.0 + flutter_svg: ^1.1.6 + cached_network_image: ^3.2.3 + remove_emoji_input_formatter: ^0.0.1+1 + + + +dev_dependencies: + flutter_test: + sdk: flutter + + # The "flutter_lints" package below contains a set of recommended lints to + # encourage good coding practices. The lint set provided by the package is + # activated in the `analysis_options.yaml` file located at the root of your + # package. See that file for information about deactivating specific lint + # rules and activating additional ones. + flutter_lints: ^2.0.0 + +# For information on the generic Dart part of this file, see the +# following page: https://dart.dev/tools/pub/pubspec + +# The following section is specific to Flutter packages. +flutter: + + # The following line ensures that the Material Icons font is + # included with your application, so that you can use the icons in + # the material Icons class. + uses-material-design: true + + # To add assets to your application, add an assets section, like this: + assets: + - assets/images/ + - assets/icons/ + + # An image asset can refer to one or more resolution-specific "variants", see + # https://flutter.dev/assets-and-images/#resolution-aware + + # For details regarding adding assets from package dependencies, see + # https://flutter.dev/assets-and-images/#from-packages + + # To add custom fonts to your application, add a fonts section here, + # in this "flutter" section. Each entry in this list should have a + # "family" key with the font family name, and a "fonts" key with a + # list giving the asset and other descriptors for the font. For + # example: + fonts: + - family: Manrope + fonts: + - asset: assets/fonts/Manrope/Manrope-Regular.ttf + - asset: assets/fonts/Manrope/Manrope-SemiBold.ttf + weight: 600 + - asset: assets/fonts/Manrope/Manrope-Bold.ttf + weight: 700 + + # For details regarding fonts from package dependencies, + # see https://flutter.dev/custom-fonts/#from-packages diff --git a/test/widget_test.dart b/test/widget_test.dart new file mode 100644 index 0000000..02ed8ab --- /dev/null +++ b/test/widget_test.dart @@ -0,0 +1,30 @@ +// This is a basic Flutter widget test. +// +// To perform an interaction with a widget in your test, use the WidgetTester +// utility in the flutter_test package. For example, you can send tap and scroll +// gestures. You can also use WidgetTester to find child widgets in the widget +// tree, read text, and verify that the values of widget properties are correct. + +import 'package:flutter/material.dart'; +import 'package:flutter_test/flutter_test.dart'; + +import 'package:cims_apps/main.dart'; + +void main() { + testWidgets('Counter increments smoke test', (WidgetTester tester) async { + // Build our app and trigger a frame. + await tester.pumpWidget(const MyApp()); + + // Verify that our counter starts at 0. + expect(find.text('0'), findsOneWidget); + expect(find.text('1'), findsNothing); + + // Tap the '+' icon and trigger a frame. + await tester.tap(find.byIcon(Icons.add)); + await tester.pump(); + + // Verify that our counter has incremented. + expect(find.text('0'), findsNothing); + expect(find.text('1'), findsOneWidget); + }); +}