diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9d532b1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,41 @@ +# Miscellaneous +*.class +*.log +*.pyc +*.swp +.DS_Store +.atom/ +.buildlog/ +.history +.svn/ + +# 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 +.packages +.pub-cache/ +.pub/ +/build/ + +# Web related +lib/generated_plugin_registrant.dart + +# Symbolication related +app.*.symbols + +# Obfuscation related +app.*.map.json diff --git a/.metadata b/.metadata new file mode 100644 index 0000000..f0274b3 --- /dev/null +++ b/.metadata @@ -0,0 +1,10 @@ +# 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: 1aafb3a8b9b0c36241c5f5b34ee914770f015818 + channel: stable + +project_type: app diff --git a/README.md b/README.md index 1cb42a0..bb3b17a 100644 --- a/README.md +++ b/README.md @@ -1 +1,16 @@ -# work_today \ No newline at end of file +# work_today + +A new Flutter application. + +## Getting Started + +This project is a starting point for a Flutter application. + +A few resources to get you started if this is your first Flutter project: + +- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab) +- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook) + +For help getting started with Flutter, view our +[online documentation](https://flutter.dev/docs), which offers tutorials, +samples, guidance on mobile development, and a full API reference. diff --git a/android/.gitignore b/android/.gitignore new file mode 100644 index 0000000..0a741cb --- /dev/null +++ b/android/.gitignore @@ -0,0 +1,11 @@ +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 diff --git a/android/app/build.gradle b/android/app/build.gradle new file mode 100644 index 0000000..66e0708 --- /dev/null +++ b/android/app/build.gradle @@ -0,0 +1,66 @@ +def localProperties = new Properties() +def localPropertiesFile = rootProject.file('local.properties') +if (localPropertiesFile.exists()) { + localPropertiesFile.withReader('UTF-8') { reader -> + localProperties.load(reader) + } +} + +def flutterRoot = localProperties.getProperty('flutter.sdk') +if (flutterRoot == null) { + throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") +} + +def flutterVersionCode = localProperties.getProperty('flutter.versionCode') +if (flutterVersionCode == null) { + flutterVersionCode = '1' +} + +def flutterVersionName = localProperties.getProperty('flutter.versionName') +if (flutterVersionName == null) { + flutterVersionName = '1.0' +} + +apply plugin: 'com.android.application' +apply plugin: 'kotlin-android' +apply plugin: 'com.google.gms.google-services' +apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" + +android { + compileSdkVersion 29 + + sourceSets { + main.java.srcDirs += 'src/main/kotlin' + } + + lintOptions { + disable 'InvalidPackage' + } + + defaultConfig { + // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). + applicationId "com.dartist.work_today" + minSdkVersion 16 + targetSdkVersion 29 + 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 { + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" + implementation platform('com.google.firebase:firebase-bom:26.1.0') + implementation 'com.google.firebase:firebase-analytics' +} diff --git a/android/app/google-services.json b/android/app/google-services.json new file mode 100644 index 0000000..a5bb650 --- /dev/null +++ b/android/app/google-services.json @@ -0,0 +1,40 @@ +{ + "project_info": { + "project_number": "685257145118", + "firebase_url": "https://word-today.firebaseio.com", + "project_id": "word-today", + "storage_bucket": "word-today.appspot.com" + }, + "client": [ + { + "client_info": { + "mobilesdk_app_id": "1:685257145118:android:b01515b7cb85187c38270f", + "android_client_info": { + "package_name": "com.dartist.work_today" + } + }, + "oauth_client": [ + { + "client_id": "685257145118-lumsimm4sml18po8bke3pfdc0fn2cgrj.apps.googleusercontent.com", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "AIzaSyBPoWrsa4grx09EEAp8ne5yv3u_WIAb9LI" + } + ], + "services": { + "appinvite_service": { + "other_platform_oauth_client": [ + { + "client_id": "685257145118-lumsimm4sml18po8bke3pfdc0fn2cgrj.apps.googleusercontent.com", + "client_type": 3 + } + ] + } + } + } + ], + "configuration_version": "1" +} \ No newline at end of file diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml new file mode 100644 index 0000000..50f212b --- /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..fc27805 --- /dev/null +++ b/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + diff --git a/android/app/src/main/kotlin/com/dartist/work_today/MainActivity.kt b/android/app/src/main/kotlin/com/dartist/work_today/MainActivity.kt new file mode 100644 index 0000000..c6816ea --- /dev/null +++ b/android/app/src/main/kotlin/com/dartist/work_today/MainActivity.kt @@ -0,0 +1,6 @@ +package com.dartist.work_today + +import io.flutter.embedding.android.FlutterActivity + +class MainActivity: FlutterActivity() { +} 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/styles.xml b/android/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..1f83a33 --- /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..50f212b --- /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..5e4e71b --- /dev/null +++ b/android/build.gradle @@ -0,0 +1,32 @@ +buildscript { + ext.kotlin_version = '1.3.50' + repositories { + google() + jcenter() + } + + dependencies { + classpath 'com.android.tools.build:gradle:3.5.0' + classpath 'com.google.gms:google-services:4.3.4' + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + } +} + +allprojects { + repositories { + google() + jcenter() + } +} + +rootProject.buildDir = '../build' +subprojects { + project.buildDir = "${rootProject.buildDir}/${project.name}" +} +subprojects { + project.evaluationDependsOn(':app') +} + +task clean(type: Delete) { + delete rootProject.buildDir +} diff --git a/android/gradle.properties b/android/gradle.properties new file mode 100644 index 0000000..94adc3a --- /dev/null +++ b/android/gradle.properties @@ -0,0 +1,3 @@ +org.gradle.jvmargs=-Xmx1536M +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..296b146 --- /dev/null +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Fri Jun 23 08:50:38 CEST 2017 +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip diff --git a/android/settings.gradle b/android/settings.gradle new file mode 100644 index 0000000..44e62bc --- /dev/null +++ b/android/settings.gradle @@ -0,0 +1,11 @@ +include ':app' + +def localPropertiesFile = new File(rootProject.projectDir, "local.properties") +def properties = new Properties() + +assert localPropertiesFile.exists() +localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } + +def flutterSdkPath = properties.getProperty("flutter.sdk") +assert flutterSdkPath != null, "flutter.sdk not set in local.properties" +apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" diff --git a/images/Location.gif b/images/Location.gif new file mode 100644 index 0000000..3915ad8 Binary files /dev/null and b/images/Location.gif differ diff --git a/images/driver.png b/images/driver.png new file mode 100644 index 0000000..c16a191 Binary files /dev/null and b/images/driver.png differ diff --git a/images/laundary.png b/images/laundary.png new file mode 100644 index 0000000..eaff890 Binary files /dev/null and b/images/laundary.png differ diff --git a/images/mason.png b/images/mason.png new file mode 100644 index 0000000..1edb544 Binary files /dev/null and b/images/mason.png differ diff --git a/images/plumber.png b/images/plumber.png new file mode 100644 index 0000000..983921b Binary files /dev/null and b/images/plumber.png differ diff --git a/images/sanitisation.png b/images/sanitisation.png new file mode 100644 index 0000000..d977d84 Binary files /dev/null and b/images/sanitisation.png differ diff --git a/images/security.png b/images/security.png new file mode 100644 index 0000000..105bdef Binary files /dev/null and b/images/security.png differ diff --git a/images/sweeper.png b/images/sweeper.png new file mode 100644 index 0000000..ad33bdf Binary files /dev/null and b/images/sweeper.png differ diff --git a/ios/.gitignore b/ios/.gitignore new file mode 100644 index 0000000..e96ef60 --- /dev/null +++ b/ios/.gitignore @@ -0,0 +1,32 @@ +*.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/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..6b4c0f7 --- /dev/null +++ b/ios/Flutter/AppFrameworkInfo.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + MinimumOSVersion + 8.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..06ab273 --- /dev/null +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,495 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + 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 */; }; +/* End PBXBuildFile 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 = ""; }; +/* 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 = ""; + }; + 97C146E51CF9000F007C117D = { + isa = PBXGroup; + children = ( + 9740EEB11CF90186004384FC /* Flutter */, + 97C146F01CF9000F007C117D /* Runner */, + 97C146EF1CF9000F007C117D /* Products */, + ); + sourceTree = ""; + }; + 97C146EF1CF9000F007C117D /* Products */ = { + isa = PBXGroup; + children = ( + 97C146EE1CF9000F007C117D /* Runner.app */, + ); + 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 */ + 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 = { + LastUpgradeCheck = 1020; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 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 */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 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; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + 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; + 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 */ + 97C146EA1CF9000F007C117D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase 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 = 9.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; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.dartist.workToday; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + 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 = 9.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 = 9.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + 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; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.dartist.workToday; + 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; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.dartist.workToday; + 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 */ + 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..1d526a1 --- /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..a28140c --- /dev/null +++ b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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..28c6bf0 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..2ccbfd9 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..f091b6b 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..4cde121 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..d0ef06e 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..dcdc230 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..2ccbfd9 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..c8f9ed8 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..a6d6b86 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..a6d6b86 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..75b2d16 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..c4df70d 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..6a84f41 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..d0e1f58 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..09b10e5 --- /dev/null +++ b/ios/Runner/Info.plist @@ -0,0 +1,45 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + work_today + 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 + + UIViewControllerBasedStatusBarAppearance + + + 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/lib/Constants.dart b/lib/Constants.dart new file mode 100644 index 0000000..68858f5 --- /dev/null +++ b/lib/Constants.dart @@ -0,0 +1,60 @@ +import 'package:flutter/material.dart'; + +final kSpacingUnit = 10.00; + +const kSilverColor = const Color(0xFFF6F7FB); +const kAccentColor = const Color(0xFFED5575); +const kPrimaryTextColor = const Color(0xFF211D42); +const kSecondaryTextColor = const Color(0xFFB9B8CD); + +final kCardShadow = BoxShadow( + color: Color.fromRGBO(0, 0, 0, 0.05), + blurRadius: 20, + offset: Offset(10, 10), +); + +final kFooterShadow = BoxShadow( + color: Color.fromRGBO(0, 0, 0, 0.10), + blurRadius: 50, + offset: Offset(0, -10), +); + +final kHeadingTextStyle = TextStyle( + color: kPrimaryTextColor, + fontFamily: 'SF Pro Rounded', + fontSize: 34, + fontWeight: FontWeight.w100, +); + +final kTitleTextStyle = TextStyle( + color: kPrimaryTextColor, + fontSize: 17, + fontWeight: FontWeight.w500, +); + +final kSubTitleTextStyle = TextStyle( + color: kPrimaryTextColor, + fontSize: 15, + fontWeight: FontWeight.w500, +); + +final kCardTitleTextStyle = TextStyle( + color: kSecondaryTextColor, + fontSize: 13, + fontWeight: FontWeight.w500, +); + +final kBodyTextStyle = TextStyle( + color: kPrimaryTextColor, + fontSize: 13, +); + +final kCaptionTextStyle = TextStyle( + color: kSecondaryTextColor, + fontSize: 10, +); + +var kSubtitleStyle = TextStyle( + fontSize: 14.0, + color: Colors.black, +); diff --git a/lib/components/Card.dart b/lib/components/Card.dart new file mode 100644 index 0000000..389439c --- /dev/null +++ b/lib/components/Card.dart @@ -0,0 +1,37 @@ +import 'package:flutter/material.dart'; +import 'package:work_today/components/Job.dart'; +import 'package:work_today/screens/available_worker.dart'; + +class CategoryCard extends StatelessWidget { + final Job job; + CategoryCard({this.job}); + @override + Widget build(BuildContext context) { + return Card( + elevation: 0.0, + margin: EdgeInsets.only(right: 18.0, top: 15.0), + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(12.0), + ), + child: ListTile( +// leading: Container( +// width: 50.0, +// height: 50.0, +// decoration: BoxDecoration( +// borderRadius: BorderRadius.circular(12.0), +// image: DecorationImage( +// image: AssetImage(job.image), +// fit: BoxFit.cover, +// ), +// ), +// ), + title: Text(job.jobTitle, style: TextStyle(fontSize: 16.0, fontWeight: FontWeight.w400)), + subtitle: Text(job.location), + trailing: Icon( + Icons.more_vert, + color: Colors.black, + ), + ), + ); + } +} diff --git a/lib/components/DetailContent.dart b/lib/components/DetailContent.dart new file mode 100644 index 0000000..4238e90 --- /dev/null +++ b/lib/components/DetailContent.dart @@ -0,0 +1,74 @@ +import 'package:flutter/material.dart'; +import 'package:work_today/components/Job.dart'; +import 'package:work_today/Constants.dart'; + +class DetailContent extends StatelessWidget { + const DetailContent({ + Key key, + @required this.data, + }) : super(key: key); + + final Job data; + + @override + Widget build(BuildContext context) { + return Flexible( + child: Container( + width: double.infinity, + padding: EdgeInsets.symmetric( + horizontal: kSpacingUnit * 4, + ), + decoration: BoxDecoration( + color: Colors.white, + borderRadius: BorderRadius.only( + topLeft: Radius.circular(kSpacingUnit * 5), + topRight: Radius.circular(kSpacingUnit * 5), + ), + ), + child: SingleChildScrollView( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + mainAxisSize: MainAxisSize.min, + children: [ + SizedBox(height: kSpacingUnit * 5), + Center( + child: Column( + children: [ + SizedBox(height: kSpacingUnit * 2), + Text( + "Driver", +// data.hiringName, + style: kTitleTextStyle, + ), + SizedBox(height: kSpacingUnit), + Text( + "Bengaluru", +// data.location, + style: kCaptionTextStyle, + ), + Text( + "20k", +// data.salary, + style: kTitleTextStyle, + ), + ], + ), + ), + SizedBox(height: kSpacingUnit * 5), + Text( + 'Responsibilities', + style: kSubTitleTextStyle, + ), + SizedBox(height: kSpacingUnit * 2), +// if (data.responsibilities != null && data.responsibilities.length > 0) +// ...data.responsibilities +// .map((responsibility) => DetailItem(data: responsibility)) +// .toList(), + SizedBox(height: kSpacingUnit * 15), + ], + ), + ), + ), + ); + } +} diff --git a/lib/components/DetailFooter.dart b/lib/components/DetailFooter.dart new file mode 100644 index 0000000..547ff63 --- /dev/null +++ b/lib/components/DetailFooter.dart @@ -0,0 +1,64 @@ +import 'package:flutter/material.dart'; +import 'package:work_today/components/Job.dart'; +import 'package:work_today/Constants.dart'; + +class DetailFooter extends StatelessWidget { + const DetailFooter({ + Key key, + }) : super(key: key); + + @override + Widget build(BuildContext context) { + return Positioned( + left: 0, + right: 0, + bottom: 0, + child: Container( + padding: EdgeInsets.all(kSpacingUnit * 2), + decoration: BoxDecoration( + color: Colors.white, + boxShadow: [kFooterShadow], + ), + child: Row( + children: [ + Expanded( + child: Container( + height: kSpacingUnit * 6, + decoration: BoxDecoration( + color: Colors.lightGreen, + borderRadius: BorderRadius.circular(kSpacingUnit * 3), + ), + child: Center( + child: Text( + 'Accept', + style: kTitleTextStyle.copyWith( + color: Colors.white, + ), + ), + ), + ), + ), + SizedBox(width: kSpacingUnit * 2), + Expanded( + child: Container( + height: kSpacingUnit * 6, + decoration: BoxDecoration( + color: kAccentColor, + borderRadius: BorderRadius.circular(kSpacingUnit * 3), + ), + child: Center( + child: Text( + 'Reject', + style: kTitleTextStyle.copyWith( + color: Colors.white, + ), + ), + ), + ), + ), + ], + ), + ), + ); + } +} diff --git a/lib/components/DetailHeader.dart b/lib/components/DetailHeader.dart new file mode 100644 index 0000000..1a871cb --- /dev/null +++ b/lib/components/DetailHeader.dart @@ -0,0 +1,35 @@ +import 'package:flutter/material.dart'; +import 'package:work_today/components/Job.dart'; +import 'package:work_today/Constants.dart'; + +class DetailHeader extends StatelessWidget { + const DetailHeader({ + Key key, + @required this.data, + }) : super(key: key); + + final Job data; + + @override + Widget build(BuildContext context) { + return Padding( + padding: EdgeInsets.symmetric( + horizontal: kSpacingUnit * 2, + vertical: kSpacingUnit * 3, + ), + child: Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + Text( + "Driver", +// data.hiringName, + style: kSubTitleTextStyle.copyWith( + fontWeight: FontWeight.w600, + ), + ), + SizedBox(width: 30.0), + ], + ), + ); + } +} diff --git a/lib/components/Job.dart b/lib/components/Job.dart new file mode 100644 index 0000000..06118be --- /dev/null +++ b/lib/components/Job.dart @@ -0,0 +1,72 @@ +class Job { + final String jobTitle; + final String salary; + final List responsibility; + final String image; + final String location; + final String hiringName; + Job( + {this.jobTitle, + this.salary, + this.responsibility, + this.image, + this.location, + this.hiringName}); +} + +List JobList = [ + Job( + jobTitle: "Driver", + salary: "20k-30k", + image: "driver", + location: "Bengaluru", + ), + Job( + jobTitle: "Cook", + salary: "20k-30k", + image: "cook", + location: "Bengaluru", + ), + Job( + jobTitle: "Sweeper", + salary: "20k-30k", + image: "sweeper", + location: "Bengaluru", + ), + Job( + jobTitle: "Laundry", + salary: "20k-30k", + image: "laundry", + location: "Bengaluru", + ), + Job( + jobTitle: "Sanitisation", + salary: "20k-30k", + image: "sanitisation", + location: "Bengaluru", + ), + Job( + jobTitle: "Construction", + salary: "20k-30k", + image: "construction", + location: "Bengaluru", + ), + Job( + jobTitle: "Plumber", + salary: "20k-30k", + image: "plumber", + location: "Bengaluru", + ), + Job( + jobTitle: "Electrician", + salary: "20k-30k", + image: "driver", + location: "Bengaluru", + ), + Job( + jobTitle: "Other", + salary: "20k-30k", + image: "driver", + location: "Bengaluru", + ), +]; diff --git a/lib/components/ReqCard.dart b/lib/components/ReqCard.dart new file mode 100644 index 0000000..ffb56ef --- /dev/null +++ b/lib/components/ReqCard.dart @@ -0,0 +1,39 @@ +import 'package:flutter/material.dart'; +import 'package:work_today/components/Job.dart'; +import 'package:work_today/screens/DescriptionScreen.dart'; + +class CategoryCard extends StatelessWidget { + final Job job; + CategoryCard({this.job}); + @override + Widget build(BuildContext context) { + return Card( + elevation: 0.0, + margin: EdgeInsets.only(right: 18.0, top: 15.0), + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(12.0), + ), + child: ListTile( +// leading: Container( +// width: 50.0, +// height: 50.0, +// decoration: BoxDecoration( +// borderRadius: BorderRadius.circular(12.0), +// image: DecorationImage( +// image: AssetImage(job.image), +// fit: BoxFit.cover, +// ), +// ), +// ), + title: Text("DRIVER", style: TextStyle(fontSize: 16.0, fontWeight: FontWeight.w400)), + subtitle: Text( + "Driver • 20k-30k", + ), + trailing: Icon( + Icons.more_vert, + color: Colors.black, + ), + ), + ); + } +} diff --git a/lib/components/category_card.dart b/lib/components/category_card.dart new file mode 100644 index 0000000..b1409b7 --- /dev/null +++ b/lib/components/category_card.dart @@ -0,0 +1,67 @@ +import 'package:flutter/material.dart'; + +const kTextStyle = TextStyle( + color: Color(0xFF7F1CFF), + fontWeight: FontWeight.bold, + fontSize: 15, +); + +class CategoryCard extends StatelessWidget { + CategoryCard({ + @required this.onPress, + this.isSelected, + this.text, + }); + + final Function onPress; + final String text; + final bool isSelected; + + @override + Widget build(BuildContext context) { + return GestureDetector( + onTap: onPress, + child: Container( + child: Stack( + children: [ + Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Container( + width: 100.0, + height: 100.0, + child: Container( + decoration: BoxDecoration( + image: DecorationImage( + image: AssetImage('images/${text.toLowerCase()}.png'))), + ), + ), + SizedBox( + height: 20.0, + ), + Text( + '$text', + style: kTextStyle, + ), + ], + ), + ), + isSelected + ? Container( + decoration: BoxDecoration( + borderRadius: BorderRadius.circular(10), + color: Color(0x407f1cff), + )) + : Container(), + ], + ), + margin: EdgeInsets.all(5.0), + decoration: BoxDecoration( + borderRadius: BorderRadius.circular(10), + color: Colors.white, + ), + ), + ); + } +} diff --git a/lib/components/input_field.dart b/lib/components/input_field.dart new file mode 100644 index 0000000..7a30f11 --- /dev/null +++ b/lib/components/input_field.dart @@ -0,0 +1,73 @@ +import 'package:flutter/material.dart'; + +class TextInputField extends StatelessWidget { + final TextEditingController controller; + final TextInputType textInputType; + final Function validator; + final String label; + final int maxLength; + + const TextInputField( + {Key key, this.controller, this.textInputType, this.validator, this.label, this.maxLength}) + : super(key: key); + + @override + Widget build(BuildContext context) { + return TextFormField( + controller: controller, + maxLength: maxLength, + validator: validator, + keyboardType: textInputType, + textAlign: TextAlign.center, + decoration: InputDecoration( + labelText: label, + labelStyle: TextStyle(fontSize: 14, color: Colors.grey.shade400), + enabledBorder: OutlineInputBorder( + borderRadius: BorderRadius.circular(10), + borderSide: BorderSide( + color: Colors.grey.shade300, + ), + ), + focusedBorder: OutlineInputBorder( + borderRadius: BorderRadius.circular(10), + borderSide: BorderSide( + color: Color(0x298742ff), + )), + ), + ); + } +} + +class PasswordInputField extends StatelessWidget { + final TextEditingController controller; + final Function validator; + final String label; + + const PasswordInputField({Key key, this.controller, this.validator, this.label}) + : super(key: key); + + @override + Widget build(BuildContext context) { + return TextFormField( + controller: controller, + validator: validator, + textAlign: TextAlign.center, + obscureText: true, + decoration: InputDecoration( + labelText: label, + labelStyle: TextStyle(fontSize: 14, color: Colors.grey.shade400), + enabledBorder: OutlineInputBorder( + borderRadius: BorderRadius.circular(10), + borderSide: BorderSide( + color: Colors.grey.shade300, + ), + ), + focusedBorder: OutlineInputBorder( + borderRadius: BorderRadius.circular(10), + borderSide: BorderSide( + color: Color(0x298742ff), + )), + ), + ); + } +} diff --git a/lib/components/location_data.dart b/lib/components/location_data.dart new file mode 100644 index 0000000..34d248d --- /dev/null +++ b/lib/components/location_data.dart @@ -0,0 +1,36 @@ +import 'dart:async'; +import 'package:geolocator/geolocator.dart'; + +class LocationData { + double glatitude; + double glongitude; + Position pos; + String city; + String postalCode; + final Geolocator geolocator = Geolocator(); + Future getCurrentlocation() async { + try { + pos = await Geolocator().getCurrentPosition(desiredAccuracy: LocationAccuracy.lowest); + glongitude = pos.longitude; + glatitude = pos.latitude; + print(glatitude); + print("latitude"); + return _getAddressFromLatLng(); + } catch (e) { + print(e); + } + } + + Future _getAddressFromLatLng() async { + try { + List p = await geolocator.placemarkFromCoordinates(glatitude, glongitude); + + Placemark place = p[0]; + city = "${place.locality}"; + postalCode = "${place.postalCode}"; + return city; + } catch (e) { + print(e); + } + } +} diff --git a/lib/components/my_button.dart b/lib/components/my_button.dart new file mode 100644 index 0000000..2a88c9e --- /dev/null +++ b/lib/components/my_button.dart @@ -0,0 +1,53 @@ +import 'package:flutter/material.dart'; + +class MyButton extends StatelessWidget { + final String text; + final double width; + final Function onPressed; + final Color buttonColor; + + const MyButton( + {Key key, @required this.text, @required this.onPressed, this.buttonColor, this.width}) + : super(key: key); + + @override + Widget build(BuildContext context) { + return Container( + height: 50, + width: width ?? 200, + child: FlatButton( + onPressed: onPressed, + color: buttonColor ?? Color(0xff7f1cff), + padding: EdgeInsets.all(0), + child: Ink( + decoration: BoxDecoration( + borderRadius: BorderRadius.circular(6), + boxShadow: buttonColor == Colors.white + ? null + : [ + BoxShadow( + color: const Color(0x298742ff), + offset: Offset(0, 4), + blurRadius: 42, + ), + ], + ), + child: Container( + alignment: Alignment.center, + constraints: BoxConstraints(maxWidth: double.infinity, minHeight: 50), + child: Text( + text, + style: TextStyle( + color: buttonColor == Colors.white ? Colors.black54 : Colors.white, + fontWeight: FontWeight.bold), + textAlign: TextAlign.center, + ), + ), + ), + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(6), + ), + ), + ); + } +} diff --git a/lib/components/worker_card.dart b/lib/components/worker_card.dart new file mode 100644 index 0000000..28cb6b6 --- /dev/null +++ b/lib/components/worker_card.dart @@ -0,0 +1,48 @@ +import 'package:flutter/material.dart'; + +class WorkerCard extends StatefulWidget { + @override + _WorkerCardState createState() => _WorkerCardState(); +} + +class _WorkerCardState extends State { + Color color=Colors.lightGreen; + String text="Hire"; + @override + Widget build(BuildContext context) { + return Card( + elevation: 0.0, + margin: EdgeInsets.only(right: 18.0, top: 15.0), + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(12.0), + ), + child: ListTile( +// leading: Container( +// width: 50.0, +// height: 50.0, +// decoration: BoxDecoration( +// borderRadius: BorderRadius.circular(12.0), +// image: DecorationImage( +// image: AssetImage(job.image), +// fit: BoxFit.cover, +// ), +// ), +// ), + title: Text("Ramesh", style: TextStyle(fontSize: 16.0,fontWeight: FontWeight.w400)), + subtitle: Text( + "Driver • 5yrs", + ), + trailing: RaisedButton( + color: color, + child: Text("$text",style: TextStyle(color: Colors.white),), + onPressed: (){ + setState(() { + color=Colors.blueGrey; + text="Requested"; + }); + }, + ), + ), + ); + } +} diff --git a/lib/main.dart b/lib/main.dart new file mode 100644 index 0000000..f8b426d --- /dev/null +++ b/lib/main.dart @@ -0,0 +1,20 @@ +import 'package:work_today/services/check.dart'; +import 'package:flutter/material.dart'; +import 'package:firebase_core/firebase_core.dart'; + +void main() async { + WidgetsFlutterBinding.ensureInitialized(); + await Firebase.initializeApp(); + runApp(MyApp()); +} + +class MyApp extends StatelessWidget { + // This widget is the root of your application. + @override + Widget build(BuildContext context) { + return MaterialApp( + title: 'Dartist', + home: Check(), + ); + } +} diff --git a/lib/model/app_user.dart b/lib/model/app_user.dart new file mode 100644 index 0000000..6f3cf0d --- /dev/null +++ b/lib/model/app_user.dart @@ -0,0 +1,31 @@ +import 'package:work_today/model/category.dart'; +import 'package:work_today/model/category.dart'; +import 'package:work_today/services/firebase_user.dart'; +import 'package:firebase_auth/firebase_auth.dart'; +import 'package:cloud_firestore/cloud_firestore.dart'; + +final _firestore = FirebaseFirestore.instance; + +class AppUser { + String name; + String phoneNo; + String email; + String uid; + String city; + bool isHirer; + Category category; + + Future initialize() async { + DocumentReference ref = _firestore.collection('users').doc(FirebaseCurrentUser.user.uid); + DocumentSnapshot doc = await ref.get(); + var data = doc.data(); + print(data); + + name = data['name']; + phoneNo = data['phoneNo']; + email = data['email']; + uid = FirebaseCurrentUser.user.uid; + city = data['city']; + isHirer = data['isHirer']; + } +} diff --git a/lib/model/category.dart b/lib/model/category.dart new file mode 100644 index 0000000..d2e3c5d --- /dev/null +++ b/lib/model/category.dart @@ -0,0 +1,18 @@ +import 'package:flutter/material.dart'; + +class Category { + var categoryBool; + Category() { + categoryBool = new List(categoryList.length); + for (int i = 0; i < categoryList.length; i++) categoryBool[i] = false; + } + List categoryList = [ + 'Driver', + 'Sweeper', + 'Laundary', + 'Sanitisation', + 'Mason', + 'Plumber', + 'Security', + ]; +} diff --git a/lib/screens/DescriptionScreen.dart b/lib/screens/DescriptionScreen.dart new file mode 100644 index 0000000..60957ee --- /dev/null +++ b/lib/screens/DescriptionScreen.dart @@ -0,0 +1,30 @@ +import 'package:flutter/material.dart'; +import 'package:work_today/components/Job.dart'; +import 'package:work_today/Constants.dart'; +import 'package:work_today/components/DetailContent.dart'; +import 'package:work_today/components/DetailHeader.dart'; +import 'package:work_today/components/DetailFooter.dart'; + +class DescriptionScreen extends StatelessWidget { + final Job data; + const DescriptionScreen({Key key, this.data}) : super(key: key); + @override + Widget build(BuildContext context) { + return Scaffold( + backgroundColor: Colors.white, + body: SafeArea( + child: Stack( + children: [ + Column( + children: [ + DetailHeader(data: data), + DetailContent(data: data), + ], + ), + DetailFooter(), + ], + ), + ), + ); + } +} diff --git a/lib/screens/HireHome.dart b/lib/screens/HireHome.dart new file mode 100644 index 0000000..67677b8 --- /dev/null +++ b/lib/screens/HireHome.dart @@ -0,0 +1,152 @@ +import 'package:work_today/components/Card.dart'; +import 'package:work_today/components/my_button.dart'; +import 'package:work_today/services/firebase_user.dart'; +import 'package:flutter/material.dart'; +import 'package:work_today/screens/available_worker.dart'; +import 'package:work_today/components/Job.dart'; + +import 'home_screen.dart'; + +class HireHome extends StatelessWidget { + double len = JobList.length / 3; + + @override + Widget build(BuildContext context) { + return Scaffold( + backgroundColor: Color(0xFFF6F6F6), + appBar: AppBar( + backgroundColor: Color(0xFFF6F6F6), + elevation: 0.0, + leading: Padding( + padding: const EdgeInsets.only( + left: 18.0, + top: 12.0, + bottom: 12.0, + right: 12.0, + ), + child: IconButton( + icon: Icon( + Icons.notifications, + size: 25.0, + color: Colors.black, + ), + onPressed: () {}, + ), + ), + actions: [ +// Icon(Icons.supervised_user_circle, size: 25.0, color: Colors.black), + SizedBox( + width: 18.0, + ), + FlatButton( + onPressed: () { + FirebaseCurrentUser().signOut(); + Navigator.pushReplacement( + context, + MaterialPageRoute( + builder: (context) => HomeScreen(), + settings: RouteSettings(name: 'Home Screen'), + )); + }, + child: Text('Logout')), + ], + ), + body: Container( + margin: EdgeInsets.only(left: 18.0), + child: SingleChildScrollView( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + SizedBox( + height: 25.0, + ), + Text("Hii ,\nWhat Are You Looking For", + style: TextStyle( + fontSize: 23, + fontWeight: FontWeight.w500, + wordSpacing: 2.5, + color: Colors.black)), +// Padding( +// padding: const EdgeInsets.only(right:18.0), +// child: Container( +// padding: EdgeInsets.symmetric(horizontal: 15.0,), +// decoration: BoxDecoration( +// color: Colors.white, +// borderRadius: BorderRadius.circular(12.0), +// ), +// child: TextField( +// cursorColor: Colors.black, +// decoration: InputDecoration( +// icon: Icon( +// Icons.search, +// size: 25.0, +// color: Colors.black, +// ), +// border: InputBorder.none, +// hintText: "Search for job title", +// +// ), +// ), +// ), +// ), + SizedBox( + height: 45.0, + ), +// Row( +// mainAxisAlignment: MainAxisAlignment.spaceBetween, +// children: [ +// Padding( +// padding: const EdgeInsets.only(left: 14.0), +// child: Text( +// "Frequent Categories", +// style: TextStyle(fontSize: 16.0, fontWeight: FontWeight.w400), +// ), +// ), +// GestureDetector( +// onTap: () { +//// Navigator.push(context, MaterialPageRoute(builder: (context)=> Worker()) ); +// }, +// child: Padding( +// padding: const EdgeInsets.only(right: 18.0), +// child: Text( +// "Show All>>", +// style: TextStyle(fontSize: 16.0, fontWeight: FontWeight.w400), +// ), +// )), +// ], +// ), +// SizedBox( +// height: 15.0, +// ), + ListView.builder( + itemCount: len.toInt(), + scrollDirection: Axis.vertical, + shrinkWrap: true, + physics: ScrollPhysics(), + itemBuilder: (context, index) { + var recent = JobList[index]; + return InkWell( + onTap: () { + Navigator.push( + context, MaterialPageRoute(builder: (context) => AvailableWorker())); + }, + child: CategoryCard( + job: recent, + ), + ); + }, + ), + SizedBox( + height: 200.0, + ), + Center(child: MyButton(text: 'Hire', onPressed: () {})), + SizedBox( + height: 50.0, + ), + ], + ), + ), + ), + ); + } +} diff --git a/lib/screens/auth/login_screen.dart b/lib/screens/auth/login_screen.dart new file mode 100644 index 0000000..39d7856 --- /dev/null +++ b/lib/screens/auth/login_screen.dart @@ -0,0 +1,180 @@ +import 'package:work_today/components/my_button.dart'; +import 'package:work_today/screens/category_screen.dart'; +import 'package:work_today/services/check.dart'; +import 'package:flutter/cupertino.dart'; +import 'package:flutter/material.dart'; +import 'package:firebase_auth/firebase_auth.dart'; +import 'package:flutter_auth_buttons/flutter_auth_buttons.dart'; +import 'package:modal_progress_hud/modal_progress_hud.dart'; + +import 'package:work_today/components/input_field.dart'; + +import 'package:work_today/screens/home_screen.dart'; + +class LoginScreen extends StatefulWidget { + @override + _LoginScreenState createState() => _LoginScreenState(); +} + +class _LoginScreenState extends State { +// final _auth=FirebaseAuth.instance; + String email; + String password; + + final _emailInputController = TextEditingController(); + final _pwdInputController = TextEditingController(); + + bool showSpinner = false; + + @override + void dispose() { + _emailInputController.dispose(); + _pwdInputController.dispose(); + super.dispose(); + } + + @override + Widget build(BuildContext context) { + return Scaffold( + backgroundColor: Colors.white, + body: SafeArea( + child: ModalProgressHUD( + inAsyncCall: showSpinner, + child: SingleChildScrollView( + child: Container( + padding: EdgeInsets.only(left: 16, right: 16), + height: MediaQuery.of(context).size.height, + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + crossAxisAlignment: CrossAxisAlignment.center, + children: [ + Column( + mainAxisAlignment: MainAxisAlignment.center, + crossAxisAlignment: CrossAxisAlignment.center, + children: [ + Transform.translate( + offset: Offset(80.0, 12.0), + child: Container( + width: 55.0, + height: 55.0, + decoration: BoxDecoration( + borderRadius: BorderRadius.all(Radius.elliptical(27.5, 27.5)), + color: const Color(0xff7F1CFF), + ), + ), + ), + Text( + 'Sign In', + style: TextStyle( + fontFamily: 'Lato', + fontSize: 35, + color: const Color(0xff404040), + fontWeight: FontWeight.w700, + ), + textAlign: TextAlign.left, + ), + SizedBox( + height: 30.0, + ), + ], + ), + Column( + children: [ + TextInputField( + controller: _emailInputController, + validator: (input) => !input.contains('@') ? 'Not a valid Email' : null, + textInputType: TextInputType.emailAddress, + label: "Email ID", + ), + SizedBox( + height: 16, + ), + PasswordInputField( + controller: _pwdInputController, + validator: (input) => + input.length < 8 ? 'You need at least 8 characters' : null, + label: "Password", + ), + SizedBox( + height: 10, + ), +// Align( +// alignment: Alignment.topRight, +// child: Text( +// "Forgot Password ?", +// style: TextStyle(fontSize: 14, fontWeight: FontWeight.w600), +// ), +// ), + SizedBox( + height: 20, + ), +// Transform.translate( +// offset: Offset(-100.0, 9.0), +// child: Container( +// width: 29.0, +// height: 29.0, +// decoration: BoxDecoration( +// borderRadius: BorderRadius.all(Radius.elliptical(14.5, 14.5)), +// color: const Color(0x697f1cff), +// ), +// ), +// ), + MyButton( + text: 'Login', + onPressed: () async { + setState(() { + showSpinner = true; + }); + try { + print('Signin execution started'); + final user = await FirebaseAuth.instance.signInWithEmailAndPassword( + email: _emailInputController.text, + password: _pwdInputController.text); + setState(() { + showSpinner = false; + }); + if (user != null) { +// SharedPreferences prefs = await SharedPreferences.getInstance(); +// prefs.setString('email', _emailInputController.text); + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => Check(), + )); + } + } catch (err) { + AlertDialog( + title: Text("Error"), + content: Text(err.toString()), + actions: [ + FlatButton( + child: Text("Close"), + onPressed: () { + Navigator.of(context).pop(); + }, + ) + ], + ); + } + }, + ), + + SizedBox( + height: 30, + ), + GoogleSignInButton( + darkMode: false, + centered: true, + onPressed: () {}, + ), + ], + ), + ], + ), + ), + ), + ), + ), + ); + } +} diff --git a/lib/screens/auth/registration_screen.dart b/lib/screens/auth/registration_screen.dart new file mode 100644 index 0000000..c3202a5 --- /dev/null +++ b/lib/screens/auth/registration_screen.dart @@ -0,0 +1,345 @@ +import 'package:work_today/components/input_field.dart'; +import 'package:work_today/components/my_button.dart'; +import 'package:work_today/screens/location_screen.dart'; +import 'package:flutter/cupertino.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter/services.dart'; +import 'package:firebase_auth/firebase_auth.dart'; +import 'package:cloud_firestore/cloud_firestore.dart'; +import 'package:modal_progress_hud/modal_progress_hud.dart'; +import 'package:work_today/services/location.dart'; + +import 'login_screen.dart'; + +final _auth = FirebaseAuth.instance; +final _firestore = FirebaseFirestore.instance; + +class RegistrationScreen extends StatefulWidget { + final bool isHire; + + const RegistrationScreen({Key key, this.isHire}) : super(key: key); + @override + _RegistrationScreenState createState() => _RegistrationScreenState(); +} + +class _RegistrationScreenState extends State { +// final _auth= FirebaseAuth.instance; + int e = 0; + bool isHirer; + final GlobalKey _formKey = GlobalKey(); + + final _usernameInputController = TextEditingController(); + final _emailInputController = TextEditingController(); + final _phoneNoController = TextEditingController(); + final _pwdInputController = TextEditingController(); + final _confirmPwdInputController = TextEditingController(); + + bool showSpinner = false; + void initialize() async { + isHirer = widget.isHire; + } + + @override + void initState() { + // TODO: implement initState + super.initState(); + initialize(); + } + + @override + void dispose() { + _usernameInputController.dispose(); + _phoneNoController.dispose(); + _confirmPwdInputController.dispose(); + _emailInputController.dispose(); + _pwdInputController.dispose(); + super.dispose(); + } + + @override + Widget build(BuildContext context) { + return Scaffold( + backgroundColor: Colors.white, + body: SafeArea( + child: ModalProgressHUD( + inAsyncCall: showSpinner, + child: SingleChildScrollView( + child: Container( + height: MediaQuery.of(context).size.height, + padding: EdgeInsets.only(left: 16, right: 16), + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + crossAxisAlignment: CrossAxisAlignment.center, + children: [ + SizedBox( + height: 10.0, + ), + Column( + crossAxisAlignment: CrossAxisAlignment.center, + children: [ + Transform.translate( + offset: Offset(100.0, 12.0), + child: Container( + width: 55.0, + height: 55.0, + decoration: BoxDecoration( + borderRadius: BorderRadius.all(Radius.elliptical(27.5, 27.5)), + color: const Color(0xff7F1CFF), + ), + ), + ), + Text( + 'Sign Up', + style: TextStyle( + fontFamily: 'Lato', + fontSize: 35, + color: const Color(0xff404040), + fontWeight: FontWeight.w700, + ), + textAlign: TextAlign.left, + ), + SizedBox( + height: 30.0, + ), + ], + ), + Form( + key: _formKey, + child: Column( + children: [ + Container( + width: double.infinity, + child: Row( + mainAxisAlignment: MainAxisAlignment.center, + crossAxisAlignment: CrossAxisAlignment.center, + children: [ + MyButton( + text: "Hire", + onPressed: () { + setState(() { + isHirer = true; + }); + }, + buttonColor: isHirer ? Color(0xff7f1cff) : Colors.white, + width: 100.0, + ), + MyButton( + text: "Work", + onPressed: () { + setState(() { + isHirer = false; + }); + }, + buttonColor: isHirer ? Colors.white : Color(0xff7f1cff), + width: 100.0, + ), + ], + ), + ), + SizedBox( + height: 16, + ), + TextInputField( + controller: _usernameInputController, + label: "Name", + ), + SizedBox( + height: 16, + ), + TextInputField( + controller: _phoneNoController, + textInputType: TextInputType.phone, + maxLength: 10, + label: "Phone No.", + ), + SizedBox( + height: 16, + ), + TextInputField( + controller: _emailInputController, + validator: (value) { + if (value.isEmpty) { + return 'Email is Required'; + } + + if (!RegExp( + r"[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?") + .hasMatch(value)) { + return 'Please enter a valid email Address'; + } + if (e == 1) { + return 'This Email is already used'; + } + + return null; + }, + textInputType: TextInputType.emailAddress, + label: "Email ID", + ), + SizedBox( + height: 16, + ), + PasswordInputField( + controller: _pwdInputController, + label: "Password", + validator: (value) { + if (value.isEmpty) { + return 'Password is Required'; + } + return null; + }, + ), + SizedBox( + height: 20, + ), + PasswordInputField( + controller: _confirmPwdInputController, + label: "Confirm Password", + validator: (value) { + if (value.isEmpty) { + return 'Confirm Password is Required'; + } + return null; + }, + ), + SizedBox( + height: 20, + ), + MyButton( + text: 'Create Account', + onPressed: () async { + if (_pwdInputController.text != _confirmPwdInputController.text) { + showDialog( + context: context, + builder: (BuildContext context) { + return AlertDialog( + title: Text("Error"), + content: Text("The passwords do not match"), + actions: [ + FlatButton( + child: Text("Close"), + onPressed: () { + Navigator.of(context).pop(); + }, + ) + ], + ); + }, + ); + return; + } + + setState(() { + showSpinner = true; + }); + _auth + .createUserWithEmailAndPassword( + email: _emailInputController.text, + password: _pwdInputController.text) + .then((currentUser) { + print('DATA UPDATE STARTED'); + _firestore + .collection('users') + .doc(currentUser.user.uid) + .set({ + "uid": currentUser.user.uid, + "name": _usernameInputController.text, + "phoneNo": _phoneNoController.text, + "email": _emailInputController.text, + "isHirer": isHirer, + }) + .then((value) => print('DATA UPDATED')) + .catchError((onError) { + setState(() { + showSpinner = false; + }); + showDialog( + context: context, + builder: (BuildContext context) { + return AlertDialog( + title: Text("Error"), + content: Text(onError.toString()), + actions: [ + FlatButton( + child: Text("Close"), + onPressed: () { + Navigator.of(context).pop(); + }, + ) + ], + ); + }, + ); + }); + }).then( + (value) { + setState(() { + showSpinner = false; + }); + Navigator.pushReplacement( + context, + MaterialPageRoute( + builder: (context) => LocationScreen(isHirer: isHirer,), + settings: RouteSettings(name: 'Location Screen'), + )); + }, + ).catchError((onError) { + setState(() { + showSpinner = false; + }); + showDialog( + context: context, + builder: (BuildContext context) { + return AlertDialog( + title: Text("Error"), + content: Text(onError.toString()), + actions: [ + FlatButton( + child: Text("Close"), + onPressed: () { + Navigator.of(context).pop(); + }, + ) + ], + ); + }, + ); + }).catchError((onError) { + setState(() { + showSpinner = false; + }); + showDialog( + context: context, + builder: (BuildContext context) { + return AlertDialog( + title: Text("Error"), + content: Text(onError.toString()), + actions: [ + FlatButton( + child: Text("Close"), + onPressed: () { + Navigator.of(context).pop(); + }, + ) + ], + ); + }, + ); + }); + }, + ), + SizedBox( + height: 30, + ), + ], + ), + ), + ], + ), + ), + ), + ), + ), + ); + } +} diff --git a/lib/screens/available_worker.dart b/lib/screens/available_worker.dart new file mode 100644 index 0000000..58f3120 --- /dev/null +++ b/lib/screens/available_worker.dart @@ -0,0 +1,57 @@ +import 'package:flutter/material.dart'; +import 'package:work_today/components/worker_card.dart'; + +class AvailableWorker extends StatelessWidget { + @override + Widget build(BuildContext context) { + return Scaffold( + backgroundColor: Color(0xFFF6F6F6), + body: SafeArea( + child: Container( + margin: EdgeInsets.only(left: 18.0), + child: SingleChildScrollView( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + SizedBox( + height: 25.0, + ), + Text("Available Workers", + style: TextStyle( + fontSize: 50.0, + fontWeight: FontWeight.w500, + wordSpacing: 2.5, + color: Colors.black)), + SizedBox( + height: 45.0, + ), + ListView.builder( + itemCount: 10, + scrollDirection: Axis.vertical, + shrinkWrap: true, + physics: ScrollPhysics(), + itemBuilder: (context, index) { +// var recent = categories[index]; + return InkWell( +// onTap: () { +// Navigator.push( +// context, +// MaterialPageRoute( +// builder: (context) => JobDetail( +// company: recent, +// ), +// ), +// ); +// }, + child: WorkerCard(), + ); + }, + ), + ], + ), + ), + ), + ), + ); + } +} diff --git a/lib/screens/category_screen.dart b/lib/screens/category_screen.dart new file mode 100644 index 0000000..2e5d7da --- /dev/null +++ b/lib/screens/category_screen.dart @@ -0,0 +1,66 @@ +import 'package:work_today/components/my_button.dart'; +import 'package:work_today/model/category.dart'; +import 'package:work_today/screens/home_screen.dart'; +import 'package:work_today/screens/worker_home.dart'; +import 'package:work_today/services/firebase_user.dart'; +import 'package:flutter/material.dart'; +import 'package:work_today/components/category_card.dart'; +import 'package:cloud_firestore/cloud_firestore.dart'; + +class CategoriesScreen extends StatefulWidget { + @override + _CategoriesScreenState createState() => _CategoriesScreenState(); +} + +class _CategoriesScreenState extends State { + Category category = Category(); + final _firestore = FirebaseFirestore.instance; + + @override + Widget build(BuildContext context) { + return Scaffold( + backgroundColor: Colors.grey, + body: SafeArea( + child: Stack( + children: [ + GridView.builder( + gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(crossAxisCount: 2), + itemBuilder: (BuildContext context, int index) { + bool isSelected = false; + return CategoryCard( + text: category.categoryList[index], + isSelected: category.categoryBool[index], + onPress: () { + setState(() { + category.categoryBool[index] = !category.categoryBool[index]; + }); + }, + ); + }, + itemCount: category.categoryList.length, + ), + Positioned( + left: MediaQuery.of(context).size.width * 0.5 - 50, + child: MyButton( + text: 'Continue..', + width: 100.0, + onPressed: () async { + await FirebaseCurrentUser().addCategory(category); + await FirebaseCurrentUser().updateCategory(category).then((value) { + Navigator.pushReplacement( + context, + MaterialPageRoute( + builder: (context) => WorkerHome(), + settings: RouteSettings(name: 'Worker Screen'), + )); + }); + }, + ), + bottom: 20.0, + ), + ], + ), + ), + ); + } +} diff --git a/lib/screens/home_screen.dart b/lib/screens/home_screen.dart new file mode 100644 index 0000000..ce4380c --- /dev/null +++ b/lib/screens/home_screen.dart @@ -0,0 +1,268 @@ +import 'package:work_today/screens/auth/login_screen.dart'; +import 'package:work_today/screens/auth/registration_screen.dart'; +import 'package:flutter/material.dart'; + +class HomeScreen extends StatefulWidget { + @override + _HomeScreenState createState() => _HomeScreenState(); +} + +class _HomeScreenState extends State { + @override + Widget build(BuildContext context) { + return MaterialApp( + home: SafeArea( + child: Scaffold( + backgroundColor: Colors.white, + body: Column( + mainAxisAlignment: MainAxisAlignment.spaceAround, + children: [ + Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Center( + child: Text( + 'LABOUR TODAY', + style: TextStyle( + fontSize: 40.0, + fontWeight: FontWeight.bold, + color: Color(0xFF7F1CFF), + letterSpacing: 2, + ), + ), + ), + SizedBox( + height: 10, + ), + Text( + 'Hire Labours Instantly', + style: TextStyle( + color: Color(0xFF7F1CFF), + fontWeight: FontWeight.bold, + fontSize: 20, + letterSpacing: 1.0, + ), + ), + ], + ), + Column( + children: [ + Row( + children: [ + Expanded( + child: Card( + elevation: 5.0, + color: Colors.white, + child: FlatButton( + onPressed: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => RegistrationScreen( + isHire: true, + ), + settings: RouteSettings(name: 'Registration Screen'), + )); + }, + child: Text( + 'HIRE', + style: TextStyle( + color: Color(0xFF7F1CFF), + fontWeight: FontWeight.bold, + fontSize: 17, + letterSpacing: 1.0, + ), + ), + ), + ), + ), + Expanded( + child: Card( + elevation: 5, + color: Colors.white, + child: FlatButton( + onPressed: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => RegistrationScreen( + isHire: false, + ), + settings: RouteSettings(name: 'Registration Screen'), + )); + }, + child: Text( + 'WORK', + style: TextStyle( + color: Color(0xFF7F1CFF), + fontWeight: FontWeight.bold, + fontSize: 17, + letterSpacing: 1.0, + ), + ), + ), + ), + ), + ], + ), + Row( + children: [ + Expanded( + child: Card( + margin: EdgeInsets.all(10), + elevation: 5, + color: Colors.white, + child: FlatButton( + onPressed: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => LoginScreen(), + settings: RouteSettings(name: 'Login Screen'), + )); + }, + child: Text( + 'LOGIN', + style: TextStyle( + color: Color(0xFF7F1CFF), + fontWeight: FontWeight.bold, + fontSize: 17, + letterSpacing: 1.0, + ), + ), + ), + ), + ), + ], + ), + ], + ), + ], + ), + ), + ), + ); + } +} + +//class HomeScreen extends StatefulWidget { +// @override +// _HomeScreenState createState() => _HomeScreenState(); +//} +// +//class _HomeScreenState extends State { +// @override +// Widget build(BuildContext context) { +// return Scaffold( +// backgroundColor: Color(0xFF0A0E21), +// body: SafeArea( +// child: Column( +// mainAxisAlignment: MainAxisAlignment.center, +// children: [ +// Expanded( +// child: Column( +// mainAxisAlignment: MainAxisAlignment.center, +// children: [ +// Center( +// child: Text( +// 'LABOUR TODAY', +// style: TextStyle( +// fontSize: 40.0, +// fontWeight: FontWeight.bold, +// color: Colors.cyanAccent, +// letterSpacing: 2, +// ), +// ), +// ), +// SizedBox( +// height: 10, +// ), +// Text( +// 'Hire Labours Instantly', +// style: TextStyle( +// color: Colors.cyanAccent, +// fontWeight: FontWeight.bold, +// fontSize: 20, +// letterSpacing: 1.0, +// ), +// ), +// ], +// ), +// ), +// Row( +// children: [ +// Expanded( +// child: Card( +// elevation: 10, +// color: Color(0xFF1D1E33), +// child: FlatButton( +// onPressed: () { +// Navigator.push( +// context, +// MaterialPageRoute( +// builder: (context) => RegistrationScreen(isHire: true,), +// settings: RouteSettings(name: 'Registration Screen'), +// )); +// }, +// child: Text( +// 'HIRE', +// style: TextStyle(color: Colors.cyanAccent, fontWeight: FontWeight.bold), +// ), +// ), +// ), +// ), +// Expanded( +// child: Card( +// elevation: 10, +// color: Color(0xFF1D1E33), +// child: FlatButton( +// onPressed: () { +// Navigator.push( +// context, +// MaterialPageRoute( +// builder: (context) => RegistrationScreen(isHire: false,), +// settings: RouteSettings(name: 'Registration Screen'), +// )); +// }, +// child: Text( +// 'WORk', +// style: TextStyle(color: Colors.cyanAccent, fontWeight: FontWeight.bold), +// ), +// ), +// ), +// ), +// ], +// ), +// Row( +// children: [ +// Expanded( +// child: Card( +// elevation: 10, +// color: Color(0xFF1D1E33), +// child: FlatButton( +// onPressed: () { +// Navigator.push( +// context, +// MaterialPageRoute( +// builder: (context) => LoginScreen(), +// settings: RouteSettings(name: 'Login Screen'), +// )); +// }, +// child: Text( +// 'LOGIN', +// style: TextStyle( +// color: Colors.cyanAccent, +// fontWeight: FontWeight.bold, +// ), +// ), +// ), +// ), +// ), +// ], +// ), +// ], +// ), +// ), +// ); +// } +//} diff --git a/lib/screens/location_screen.dart b/lib/screens/location_screen.dart new file mode 100644 index 0000000..b0cf6ca --- /dev/null +++ b/lib/screens/location_screen.dart @@ -0,0 +1,111 @@ +import 'package:work_today/components/my_button.dart'; +import 'package:work_today/screens/HireHome.dart'; +import 'package:work_today/services/firebase_user.dart'; +import 'package:flutter/cupertino.dart'; +import 'package:flutter/material.dart'; +import 'package:work_today/components/location_data.dart'; +//import 'package:firebase_auth/firebase_auth.dart'; +import 'package:flutter/services.dart'; + +import 'category_screen.dart'; + +class LocationScreen extends StatefulWidget { + final bool isHirer; + + const LocationScreen({Key key, this.isHirer}) : super(key: key); + @override + _LocationScreenState createState() => _LocationScreenState(); +} + +class _LocationScreenState extends State { + LocationData ld = LocationData(); + final _cityName = TextEditingController(); + + @override + void dispose() { + // TODO: implement dispose + super.dispose(); + _cityName.dispose(); + } + + @override + Widget build(BuildContext context) { + return Scaffold( + backgroundColor: Color(0xffFFFFFF), + body: Container( + width: double.infinity, + child: Column( + crossAxisAlignment: CrossAxisAlignment.center, + children: [ + SizedBox( + height: 50.0, + ), + Padding( + padding: const EdgeInsets.all(25.0), + child: TextField( + controller: _cityName, + decoration: InputDecoration(hintText: 'Enter The Location'), + ), + ), + FlatButton( + minWidth: 100.0, + padding: EdgeInsets.all(8.0), + color: Color(0xFFB57DFF), + child: Column( + children: [ + Icon( + Icons.location_searching, + size: 25.0, + color: Colors.white, + ), + SizedBox( + width: 20.0, + ), + Text( + "Current Location", + style: TextStyle(color: Colors.white), + ), + ], + ), + onPressed: () async { + String cityName = await ld.getCurrentlocation(); + setState(() { + _cityName.text = cityName; + }); + }, + ), + Expanded( + child: Container( + decoration: + BoxDecoration(image: DecorationImage(image: AssetImage('images/Location.gif'))), + ), + ), + MyButton( + text: 'Continue..', + width: 100.0, + onPressed: () async { + FirebaseCurrentUser().updateLocation(_cityName.text).then((value){ + if (widget.isHirer) + Navigator.pushReplacement( + context, + MaterialPageRoute( + builder: (context) => HireHome(), + )); + else + Navigator.pushReplacement( + context, + MaterialPageRoute( + builder: (context) => CategoriesScreen(), + )); + }); + }, + ), + SizedBox( + height: 40.0, + ), + ], + ), + ), + ); + } +} diff --git a/lib/screens/worker_home.dart b/lib/screens/worker_home.dart new file mode 100644 index 0000000..bbdc929 --- /dev/null +++ b/lib/screens/worker_home.dart @@ -0,0 +1,90 @@ +import 'package:work_today/services/firebase_user.dart'; +import 'package:flutter/material.dart'; +import 'package:work_today/components/ReqCard.dart'; +import 'package:work_today/screens/DescriptionScreen.dart'; + +import 'home_screen.dart'; + +class WorkerHome extends StatelessWidget { + @override + Widget build(BuildContext context) { + return Scaffold( + backgroundColor: Color(0xFFF6F6F6), + appBar: AppBar( + backgroundColor: Color(0xFFF6F6F6), + elevation: 0.0, + leading: Padding( + padding: const EdgeInsets.only( + left: 18.0, + top: 12.0, + bottom: 12.0, + right: 12.0, + ), + child: IconButton( + icon: Icon( + Icons.notifications, + size: 25.0, + color: Colors.black, + ), + onPressed: () {}, + ), + ), + actions: [ +// Icon(Icons.supervised_user_circle, size: 25.0, color: Colors.black), + SizedBox( + width: 18.0, + ), + FlatButton( + onPressed: () { + FirebaseCurrentUser().signOut(); + Navigator.pushReplacement( + context, + MaterialPageRoute( + builder: (context) => HomeScreen(), + settings: RouteSettings(name: 'Home Screen'), + )); + }, + child: Text('Logout')), + ], + ), + body: Container( + margin: EdgeInsets.only(left: 18.0), + child: SingleChildScrollView( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + SizedBox( + height: 25.0, + ), + Text("Hii ,\nHere Are Your Requests", + style: TextStyle( + fontSize: 23, + fontWeight: FontWeight.w500, + wordSpacing: 2.5, + color: Colors.black)), + SizedBox( + height: 45.0, + ), + ListView.builder( + itemCount: 10, + scrollDirection: Axis.vertical, + shrinkWrap: true, + physics: ScrollPhysics(), + itemBuilder: (context, index) { +// var recent = categories[index]; + return InkWell( + onTap: () { +// Navigator.push( +// context, MaterialPageRoute(builder: (context) => DescriptionScreen())); + }, + child: CategoryCard(), + ); + }, + ), + ], + ), + ), + ), + ); + } +} diff --git a/lib/services/check.dart b/lib/services/check.dart new file mode 100644 index 0000000..21a7456 --- /dev/null +++ b/lib/services/check.dart @@ -0,0 +1,65 @@ +import 'package:work_today/model/app_user.dart'; +import 'package:work_today/screens/home_screen.dart'; +import 'package:work_today/screens/location_screen.dart'; +import 'package:work_today/screens/available_worker.dart'; +import 'package:work_today/screens/worker_home.dart'; +import 'package:flutter/material.dart'; +import 'package:work_today/services/firebase_user.dart'; +import 'package:work_today/screens/category_screen.dart'; +import 'package:work_today/screens/HireHome.dart'; + +class Check extends StatefulWidget { + @override + _CheckState createState() => _CheckState(); +} + +class _CheckState extends State { + void check() async { + Future.delayed(Duration(milliseconds: 500), () async { + if (FirebaseCurrentUser().currentUser == null) { + Navigator.pushReplacement( + context, + MaterialPageRoute( + builder: (context) => HomeScreen(), + settings: RouteSettings(name: 'Sign In Screen'), + )); + } else { + AppUser appUser = AppUser(); + await appUser.initialize(); + FirebaseCurrentUser.appUser = appUser; + + if (!appUser.isHirer) + Navigator.pushReplacement( + context, + MaterialPageRoute( + builder: (context) => WorkerHome(), + )); + else + Navigator.pushReplacement( + context, + MaterialPageRoute( + builder: (context) => HireHome(), + )); + } + }); + } + + @override + initState() { + super.initState(); + check(); + } + + Widget build(BuildContext context) { + return Scaffold( + body: SafeArea( + child: Center( + child: Text( + 'Dartists', + style: TextStyle(fontSize: 50.0), + ), + ), + ), + ); + } +} diff --git a/lib/services/firebase_user.dart b/lib/services/firebase_user.dart new file mode 100644 index 0000000..54b68d0 --- /dev/null +++ b/lib/services/firebase_user.dart @@ -0,0 +1,88 @@ +import 'package:work_today/model/category.dart'; +import 'package:firebase_auth/firebase_auth.dart'; +import 'package:cloud_firestore/cloud_firestore.dart'; +import 'package:work_today/model/app_user.dart'; +import 'package:google_sign_in/google_sign_in.dart'; + +class FirebaseCurrentUser { + final _auth = FirebaseAuth.instance; + final _firestore = FirebaseFirestore.instance; +// final GoogleSignIn googleSignIn = GoogleSignIn(); + + static User user; + static AppUser appUser; + + User get currentUser { + if (user != null) { + return user; + } + + final User currentUser = _auth.currentUser; + user = currentUser; + return currentUser; + } + + Future signOut() async { + return _auth.signOut().then((value) { + user = null; + }); + } + + Future updateLocation(String city) async { + DocumentReference ref = + _firestore.collection('users').doc(FirebaseCurrentUser().currentUser.uid); + + return ref.update({ +// 'uid': user.uid, +// 'email': user.email, +// 'photoURL': user.photoURL, +// 'displayName': user.displayName, +// 'lastSeen': DateTime.now(), + 'city': city, + }); + } + + Future addCategory(Category category) async { + List selectedCategories = []; + for (int i = 0; i < category.categoryList.length; i++) { + if (category.categoryBool[i]) { + selectedCategories.add(category.categoryList[i]); + } + } + DocumentReference ref = _firestore.collection('users').doc(user.uid); + + ref.update({ + 'categories': selectedCategories, + }); + } + + Future updateCategory(Category category) async { + List selectedCategories = []; + for (int i = 0; i < category.categoryList.length; i++) { + if (category.categoryBool[i]) { + selectedCategories.add(category.categoryList[i].toLowerCase()); + } + } + + DocumentReference ref = _firestore.collection('category').doc('cfdOhIiAzuSEHARrTAPK'); + DocumentSnapshot doc = await ref.get(); + var data = doc.data(); + Map categoryMap = data['category']; + for (String str in selectedCategories) { + print(str); + if (categoryMap.containsKey(str)) { + List list = categoryMap[str]; + if (!list.contains(currentUser.uid)) { + list.add(currentUser.uid); + categoryMap[str] = list; + } + } else { + List list = [currentUser.uid]; + categoryMap[str] = list; + } + } + ref.set({ + 'category': categoryMap, + }); + } +} diff --git a/lib/services/location.dart b/lib/services/location.dart new file mode 100644 index 0000000..d85c99e --- /dev/null +++ b/lib/services/location.dart @@ -0,0 +1,36 @@ +import 'dart:async'; +import 'package:geolocator/geolocator.dart'; + +class Location { + double glatitude; + double glongitude; + Position pos; + String city; + String postalCode; + final Geolocator geolocator = Geolocator(); + + Future getCurrentlocation() async { + try { + pos = await Geolocator().getCurrentPosition(desiredAccuracy: LocationAccuracy.lowest); + glongitude = pos.longitude; + glatitude = pos.latitude; + _getAddressFromLatLng(); + } catch (e) { + print(e); + } + return city; + } + + _getAddressFromLatLng() async { + try { + List p = await geolocator.placemarkFromCoordinates(pos.latitude, pos.longitude); + + Placemark place = p[0]; + city = "${place.locality}"; + postalCode = "${place.postalCode}"; + print(city); + } catch (e) { + print(e); + } + } +} diff --git a/pubspec.lock b/pubspec.lock new file mode 100644 index 0000000..50bab54 --- /dev/null +++ b/pubspec.lock @@ -0,0 +1,320 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + async: + dependency: transitive + description: + name: async + url: "https://pub.dartlang.org" + source: hosted + version: "2.5.0-nullsafety.1" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.0-nullsafety.1" + characters: + dependency: transitive + description: + name: characters + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.0-nullsafety.3" + charcode: + dependency: transitive + description: + name: charcode + url: "https://pub.dartlang.org" + source: hosted + version: "1.2.0-nullsafety.1" + clock: + dependency: transitive + description: + name: clock + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.0-nullsafety.1" + cloud_firestore: + dependency: "direct main" + description: + name: cloud_firestore + url: "https://pub.dartlang.org" + source: hosted + version: "0.14.3+1" + cloud_firestore_platform_interface: + dependency: transitive + description: + name: cloud_firestore_platform_interface + url: "https://pub.dartlang.org" + source: hosted + version: "2.2.0" + cloud_firestore_web: + dependency: transitive + description: + name: cloud_firestore_web + url: "https://pub.dartlang.org" + source: hosted + version: "0.2.1+1" + collection: + dependency: transitive + description: + name: collection + url: "https://pub.dartlang.org" + source: hosted + version: "1.15.0-nullsafety.3" + cupertino_icons: + dependency: "direct main" + description: + name: cupertino_icons + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.0" + equatable: + dependency: transitive + description: + name: equatable + url: "https://pub.dartlang.org" + source: hosted + version: "1.2.5" + fake_async: + dependency: transitive + description: + name: fake_async + url: "https://pub.dartlang.org" + source: hosted + version: "1.2.0-nullsafety.1" + firebase_auth: + dependency: "direct main" + description: + name: firebase_auth + url: "https://pub.dartlang.org" + source: hosted + version: "0.18.3+1" + firebase_auth_platform_interface: + dependency: transitive + description: + name: firebase_auth_platform_interface + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.3" + firebase_auth_web: + dependency: transitive + description: + name: firebase_auth_web + url: "https://pub.dartlang.org" + source: hosted + version: "0.3.2+1" + firebase_core: + dependency: "direct main" + description: + name: firebase_core + url: "https://pub.dartlang.org" + source: hosted + version: "0.5.2+1" + firebase_core_platform_interface: + dependency: transitive + description: + name: firebase_core_platform_interface + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.0" + firebase_core_web: + dependency: transitive + description: + name: firebase_core_web + url: "https://pub.dartlang.org" + source: hosted + version: "0.2.1+1" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_auth_buttons: + dependency: "direct main" + description: + name: flutter_auth_buttons + url: "https://pub.dartlang.org" + source: hosted + version: "0.10.0" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + flutter_web_plugins: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + geolocator: + dependency: "direct main" + description: + name: geolocator + url: "https://pub.dartlang.org" + source: hosted + version: "5.3.2+2" + google_api_availability: + dependency: transitive + description: + name: google_api_availability + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.4" + google_sign_in: + dependency: "direct main" + description: + name: google_sign_in + url: "https://pub.dartlang.org" + source: hosted + version: "4.5.6" + google_sign_in_platform_interface: + dependency: transitive + description: + name: google_sign_in_platform_interface + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.2" + google_sign_in_web: + dependency: transitive + description: + name: google_sign_in_web + url: "https://pub.dartlang.org" + source: hosted + version: "0.9.2" + http_parser: + dependency: transitive + description: + name: http_parser + url: "https://pub.dartlang.org" + source: hosted + version: "3.1.4" + intl: + dependency: transitive + description: + name: intl + url: "https://pub.dartlang.org" + source: hosted + version: "0.16.1" + js: + dependency: transitive + description: + name: js + url: "https://pub.dartlang.org" + source: hosted + version: "0.6.2" + location_permissions: + dependency: transitive + description: + name: location_permissions + url: "https://pub.dartlang.org" + source: hosted + version: "3.0.0+1" + matcher: + dependency: transitive + description: + name: matcher + url: "https://pub.dartlang.org" + source: hosted + version: "0.12.10-nullsafety.1" + meta: + dependency: transitive + description: + name: meta + url: "https://pub.dartlang.org" + source: hosted + version: "1.3.0-nullsafety.3" + modal_progress_hud: + dependency: "direct main" + description: + name: modal_progress_hud + url: "https://pub.dartlang.org" + source: hosted + version: "0.1.3" + path: + dependency: transitive + description: + name: path + url: "https://pub.dartlang.org" + source: hosted + version: "1.8.0-nullsafety.1" + plugin_platform_interface: + dependency: transitive + description: + name: plugin_platform_interface + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.3" + quiver: + dependency: transitive + description: + name: quiver + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.5" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.99" + source_span: + dependency: transitive + description: + name: source_span + url: "https://pub.dartlang.org" + source: hosted + version: "1.8.0-nullsafety.2" + stack_trace: + dependency: transitive + description: + name: stack_trace + url: "https://pub.dartlang.org" + source: hosted + version: "1.10.0-nullsafety.1" + stream_channel: + dependency: transitive + description: + name: stream_channel + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.0-nullsafety.1" + string_scanner: + dependency: transitive + description: + name: string_scanner + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.0-nullsafety.1" + term_glyph: + dependency: transitive + description: + name: term_glyph + url: "https://pub.dartlang.org" + source: hosted + version: "1.2.0-nullsafety.1" + test_api: + dependency: transitive + description: + name: test_api + url: "https://pub.dartlang.org" + source: hosted + version: "0.2.19-nullsafety.2" + typed_data: + dependency: transitive + description: + name: typed_data + url: "https://pub.dartlang.org" + source: hosted + version: "1.3.0-nullsafety.3" + vector_math: + dependency: transitive + description: + name: vector_math + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.0-nullsafety.3" +sdks: + dart: ">=2.10.0-110 <2.11.0" + flutter: ">=1.12.13+hotfix.6 <2.0.0" diff --git a/pubspec.yaml b/pubspec.yaml new file mode 100644 index 0000000..94c0c4c --- /dev/null +++ b/pubspec.yaml @@ -0,0 +1,86 @@ +name: work_today +description: A new Flutter application. + +# The following line prevents the package from being accidentally published to +# pub.dev using `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 used as CFBundleVersion. +# Read more about iOS versioning at +# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html +version: 1.0.0+1 + +environment: + sdk: ">=2.7.0 <3.0.0" + +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.0 + firebase_auth: ^0.18.3 + firebase_core: ^0.5.2 + cloud_firestore: ^0.14.3 + modal_progress_hud: ^0.1.3 + google_sign_in: ^4.5.6 + geolocator: ^5.3.1 + flutter_auth_buttons: ^0.10.0 + +dev_dependencies: + flutter_test: + sdk: flutter + +# 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. +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 + + assets: + - images/ + + # To add assets to your application, add an assets section, like this: + # assets: + # - images/a_dot_burr.jpeg + # - images/a_dot_ham.jpeg + + # 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: Schyler + # fonts: + # - asset: fonts/Schyler-Regular.ttf + # - asset: fonts/Schyler-Italic.ttf + # style: italic + # - family: Trajan Pro + # fonts: + # - asset: fonts/TrajanPro.ttf + # - asset: fonts/TrajanPro_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..f8e723f --- /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 that Flutter provides. 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:work_today/main.dart'; + +void main() { + testWidgets('Counter increments smoke test', (WidgetTester tester) async { + // Build our app and trigger a frame. + await tester.pumpWidget(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); + }); +}