diff --git a/gmailapp/.gitignore b/gmailapp/.gitignore new file mode 100644 index 0000000..1ba9c33 --- /dev/null +++ b/gmailapp/.gitignore @@ -0,0 +1,43 @@ +# 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/ +.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 + +# Exceptions to above rules. +!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages diff --git a/gmailapp/.metadata b/gmailapp/.metadata new file mode 100644 index 0000000..6ac2303 --- /dev/null +++ b/gmailapp/.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: f7a6a7906be96d2288f5d63a5a54c515a6e987fe + channel: stable + +project_type: app diff --git a/gmailapp/README.md b/gmailapp/README.md new file mode 100644 index 0000000..b1d71df --- /dev/null +++ b/gmailapp/README.md @@ -0,0 +1,16 @@ +# gmailapp + +A new Flutter project. + +## Getting Started + +This project is a starting point for a Flutter application. + +A few resources to get you started if this is your first Flutter project: + +- [Lab: Write your first Flutter app](https://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/gmailapp/android/.gitignore b/gmailapp/android/.gitignore new file mode 100644 index 0000000..bc2100d --- /dev/null +++ b/gmailapp/android/.gitignore @@ -0,0 +1,7 @@ +gradle-wrapper.jar +/.gradle +/captures/ +/gradlew +/gradlew.bat +/local.properties +GeneratedPluginRegistrant.java diff --git a/gmailapp/android/app/build.gradle b/gmailapp/android/app/build.gradle new file mode 100644 index 0000000..9bfbf09 --- /dev/null +++ b/gmailapp/android/app/build.gradle @@ -0,0 +1,63 @@ +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 from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" + +android { + compileSdkVersion 28 + + 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.example.gmailapp" + minSdkVersion 16 + targetSdkVersion 28 + 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" +} diff --git a/gmailapp/android/app/src/debug/AndroidManifest.xml b/gmailapp/android/app/src/debug/AndroidManifest.xml new file mode 100644 index 0000000..1fca4c0 --- /dev/null +++ b/gmailapp/android/app/src/debug/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/gmailapp/android/app/src/main/AndroidManifest.xml b/gmailapp/android/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..565a7db --- /dev/null +++ b/gmailapp/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + diff --git a/gmailapp/android/app/src/main/kotlin/com/example/gmailapp/MainActivity.kt b/gmailapp/android/app/src/main/kotlin/com/example/gmailapp/MainActivity.kt new file mode 100644 index 0000000..a612009 --- /dev/null +++ b/gmailapp/android/app/src/main/kotlin/com/example/gmailapp/MainActivity.kt @@ -0,0 +1,6 @@ +package com.example.gmailapp + +import io.flutter.embedding.android.FlutterActivity + +class MainActivity: FlutterActivity() { +} diff --git a/gmailapp/android/app/src/main/res/drawable/gmaildribbble.gif b/gmailapp/android/app/src/main/res/drawable/gmaildribbble.gif new file mode 100644 index 0000000..e32c4bb Binary files /dev/null and b/gmailapp/android/app/src/main/res/drawable/gmaildribbble.gif differ diff --git a/gmailapp/android/app/src/main/res/drawable/launch_background.xml b/gmailapp/android/app/src/main/res/drawable/launch_background.xml new file mode 100644 index 0000000..304732f --- /dev/null +++ b/gmailapp/android/app/src/main/res/drawable/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/gmailapp/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/gmailapp/android/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..db77bb4 Binary files /dev/null and b/gmailapp/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/gmailapp/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/gmailapp/android/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..17987b7 Binary files /dev/null and b/gmailapp/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/gmailapp/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/gmailapp/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..09d4391 Binary files /dev/null and b/gmailapp/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/gmailapp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/gmailapp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..d5f1c8d Binary files /dev/null and b/gmailapp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/gmailapp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/gmailapp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..4d6372e Binary files /dev/null and b/gmailapp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/gmailapp/android/app/src/main/res/values/styles.xml b/gmailapp/android/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..1f83a33 --- /dev/null +++ b/gmailapp/android/app/src/main/res/values/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/gmailapp/android/app/src/profile/AndroidManifest.xml b/gmailapp/android/app/src/profile/AndroidManifest.xml new file mode 100644 index 0000000..1fca4c0 --- /dev/null +++ b/gmailapp/android/app/src/profile/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/gmailapp/android/build.gradle b/gmailapp/android/build.gradle new file mode 100644 index 0000000..3100ad2 --- /dev/null +++ b/gmailapp/android/build.gradle @@ -0,0 +1,31 @@ +buildscript { + ext.kotlin_version = '1.3.50' + repositories { + google() + jcenter() + } + + dependencies { + classpath 'com.android.tools.build:gradle:3.5.0' + 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/gmailapp/android/gradle.properties b/gmailapp/android/gradle.properties new file mode 100644 index 0000000..38c8d45 --- /dev/null +++ b/gmailapp/android/gradle.properties @@ -0,0 +1,4 @@ +org.gradle.jvmargs=-Xmx1536M +android.enableR8=true +android.useAndroidX=true +android.enableJetifier=true diff --git a/gmailapp/android/gradle/wrapper/gradle-wrapper.properties b/gmailapp/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..296b146 --- /dev/null +++ b/gmailapp/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/gmailapp/android/settings.gradle b/gmailapp/android/settings.gradle new file mode 100644 index 0000000..5a2f14f --- /dev/null +++ b/gmailapp/android/settings.gradle @@ -0,0 +1,15 @@ +include ':app' + +def flutterProjectRoot = rootProject.projectDir.parentFile.toPath() + +def plugins = new Properties() +def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins') +if (pluginsFile.exists()) { + pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) } +} + +plugins.each { name, path -> + def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile() + include ":$name" + project(":$name").projectDir = pluginDirectory +} diff --git a/gmailapp/android/settings_aar.gradle b/gmailapp/android/settings_aar.gradle new file mode 100644 index 0000000..e7b4def --- /dev/null +++ b/gmailapp/android/settings_aar.gradle @@ -0,0 +1 @@ +include ':app' diff --git a/gmailapp/assets/comp_3.gif b/gmailapp/assets/comp_3.gif new file mode 100644 index 0000000..0e03e00 Binary files /dev/null and b/gmailapp/assets/comp_3.gif differ diff --git a/gmailapp/assets/confrim.gif b/gmailapp/assets/confrim.gif new file mode 100644 index 0000000..9b9a7a4 Binary files /dev/null and b/gmailapp/assets/confrim.gif differ diff --git a/gmailapp/assets/delete-animation.gif b/gmailapp/assets/delete-animation.gif new file mode 100644 index 0000000..e81eb71 Binary files /dev/null and b/gmailapp/assets/delete-animation.gif differ diff --git a/gmailapp/assets/delete.gif b/gmailapp/assets/delete.gif new file mode 100644 index 0000000..20aa2ce Binary files /dev/null and b/gmailapp/assets/delete.gif differ diff --git a/gmailapp/assets/detailmail.gif b/gmailapp/assets/detailmail.gif new file mode 100644 index 0000000..a8cf37b Binary files /dev/null and b/gmailapp/assets/detailmail.gif differ diff --git a/gmailapp/assets/empty.png b/gmailapp/assets/empty.png new file mode 100644 index 0000000..237076a Binary files /dev/null and b/gmailapp/assets/empty.png differ diff --git a/gmailapp/assets/gmaildribbble.gif b/gmailapp/assets/gmaildribbble.gif new file mode 100644 index 0000000..e32c4bb Binary files /dev/null and b/gmailapp/assets/gmaildribbble.gif differ diff --git a/gmailapp/assets/gmailsearch.gif b/gmailapp/assets/gmailsearch.gif new file mode 100644 index 0000000..cc397da Binary files /dev/null and b/gmailapp/assets/gmailsearch.gif differ diff --git a/gmailapp/assets/loading1.gif b/gmailapp/assets/loading1.gif new file mode 100644 index 0000000..ab7e21d Binary files /dev/null and b/gmailapp/assets/loading1.gif differ diff --git a/gmailapp/assets/mail.gif b/gmailapp/assets/mail.gif new file mode 100644 index 0000000..ea45055 Binary files /dev/null and b/gmailapp/assets/mail.gif differ diff --git a/gmailapp/assets/mail_detail.gif b/gmailapp/assets/mail_detail.gif new file mode 100644 index 0000000..85a267b Binary files /dev/null and b/gmailapp/assets/mail_detail.gif differ diff --git a/gmailapp/assets/no_result.gif b/gmailapp/assets/no_result.gif new file mode 100644 index 0000000..9ef98ea Binary files /dev/null and b/gmailapp/assets/no_result.gif differ diff --git a/gmailapp/assets/noresults.jpg b/gmailapp/assets/noresults.jpg new file mode 100644 index 0000000..3abbfdc Binary files /dev/null and b/gmailapp/assets/noresults.jpg differ diff --git a/gmailapp/assets/sendmail.gif b/gmailapp/assets/sendmail.gif new file mode 100644 index 0000000..b75130f Binary files /dev/null and b/gmailapp/assets/sendmail.gif differ diff --git a/gmailapp/assets/starred.gif b/gmailapp/assets/starred.gif new file mode 100644 index 0000000..ea45055 Binary files /dev/null and b/gmailapp/assets/starred.gif differ diff --git a/gmailapp/assets/zero-inbox.jpg b/gmailapp/assets/zero-inbox.jpg new file mode 100644 index 0000000..d15bc8f Binary files /dev/null and b/gmailapp/assets/zero-inbox.jpg differ diff --git a/gmailapp/ios/.gitignore b/gmailapp/ios/.gitignore new file mode 100644 index 0000000..e96ef60 --- /dev/null +++ b/gmailapp/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/gmailapp/ios/Flutter/AppFrameworkInfo.plist b/gmailapp/ios/Flutter/AppFrameworkInfo.plist new file mode 100644 index 0000000..6b4c0f7 --- /dev/null +++ b/gmailapp/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/gmailapp/ios/Flutter/Debug.xcconfig b/gmailapp/ios/Flutter/Debug.xcconfig new file mode 100644 index 0000000..592ceee --- /dev/null +++ b/gmailapp/ios/Flutter/Debug.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/gmailapp/ios/Flutter/Release.xcconfig b/gmailapp/ios/Flutter/Release.xcconfig new file mode 100644 index 0000000..592ceee --- /dev/null +++ b/gmailapp/ios/Flutter/Release.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/gmailapp/ios/Runner.xcodeproj/project.pbxproj b/gmailapp/ios/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000..501e409 --- /dev/null +++ b/gmailapp/ios/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,506 @@ +// !$*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 */, + 97C146F11CF9000F007C117D /* Supporting Files */, + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, + ); + path = Runner; + sourceTree = ""; + }; + 97C146F11CF9000F007C117D /* Supporting Files */ = { + isa = PBXGroup; + children = ( + ); + name = "Supporting Files"; + 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; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + 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 = 8.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.example.gmailapp; + 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; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + 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 = 8.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 97C147041CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + 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 = 8.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.example.gmailapp; + 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.example.gmailapp; + 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/gmailapp/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/gmailapp/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..1d526a1 --- /dev/null +++ b/gmailapp/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/gmailapp/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/gmailapp/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/gmailapp/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/gmailapp/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/gmailapp/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/gmailapp/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/gmailapp/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/gmailapp/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000..a28140c --- /dev/null +++ b/gmailapp/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gmailapp/ios/Runner.xcworkspace/contents.xcworkspacedata b/gmailapp/ios/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..1d526a1 --- /dev/null +++ b/gmailapp/ios/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/gmailapp/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/gmailapp/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/gmailapp/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/gmailapp/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/gmailapp/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/gmailapp/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/gmailapp/ios/Runner/AppDelegate.swift b/gmailapp/ios/Runner/AppDelegate.swift new file mode 100644 index 0000000..70693e4 --- /dev/null +++ b/gmailapp/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/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..d36b1fa --- /dev/null +++ b/gmailapp/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/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png new file mode 100644 index 0000000..dc9ada4 Binary files /dev/null and b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ diff --git a/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png new file mode 100644 index 0000000..28c6bf0 Binary files /dev/null and b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ diff --git a/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png new file mode 100644 index 0000000..2ccbfd9 Binary files /dev/null and b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ diff --git a/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png new file mode 100644 index 0000000..f091b6b Binary files /dev/null and b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ diff --git a/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png new file mode 100644 index 0000000..4cde121 Binary files /dev/null and b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ diff --git a/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png new file mode 100644 index 0000000..d0ef06e Binary files /dev/null and b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ diff --git a/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png new file mode 100644 index 0000000..dcdc230 Binary files /dev/null and b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ diff --git a/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png new file mode 100644 index 0000000..2ccbfd9 Binary files /dev/null and b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ diff --git a/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png new file mode 100644 index 0000000..c8f9ed8 Binary files /dev/null and b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ diff --git a/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png new file mode 100644 index 0000000..a6d6b86 Binary files /dev/null and b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ diff --git a/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png new file mode 100644 index 0000000..a6d6b86 Binary files /dev/null and b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ diff --git a/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png new file mode 100644 index 0000000..75b2d16 Binary files /dev/null and b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ diff --git a/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png new file mode 100644 index 0000000..c4df70d Binary files /dev/null and b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ diff --git a/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png new file mode 100644 index 0000000..6a84f41 Binary files /dev/null and b/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ diff --git a/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/gmailapp/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/gmailapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ diff --git a/gmailapp/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/gmailapp/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json new file mode 100644 index 0000000..0bedcf2 --- /dev/null +++ b/gmailapp/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/gmailapp/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/gmailapp/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/gmailapp/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ diff --git a/gmailapp/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/gmailapp/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/gmailapp/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ diff --git a/gmailapp/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/gmailapp/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/gmailapp/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ diff --git a/gmailapp/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/gmailapp/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md new file mode 100644 index 0000000..89c2725 --- /dev/null +++ b/gmailapp/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/gmailapp/ios/Runner/Base.lproj/LaunchScreen.storyboard b/gmailapp/ios/Runner/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..f2e259c --- /dev/null +++ b/gmailapp/ios/Runner/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gmailapp/ios/Runner/Base.lproj/Main.storyboard b/gmailapp/ios/Runner/Base.lproj/Main.storyboard new file mode 100644 index 0000000..f3c2851 --- /dev/null +++ b/gmailapp/ios/Runner/Base.lproj/Main.storyboard @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gmailapp/ios/Runner/Info.plist b/gmailapp/ios/Runner/Info.plist new file mode 100644 index 0000000..220ad05 --- /dev/null +++ b/gmailapp/ios/Runner/Info.plist @@ -0,0 +1,45 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + gmailapp + 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/gmailapp/ios/Runner/Runner-Bridging-Header.h b/gmailapp/ios/Runner/Runner-Bridging-Header.h new file mode 100644 index 0000000..308a2a5 --- /dev/null +++ b/gmailapp/ios/Runner/Runner-Bridging-Header.h @@ -0,0 +1 @@ +#import "GeneratedPluginRegistrant.h" diff --git a/gmailapp/lib/main.dart b/gmailapp/lib/main.dart new file mode 100644 index 0000000..3f18622 --- /dev/null +++ b/gmailapp/lib/main.dart @@ -0,0 +1,39 @@ +import 'package:flutter/material.dart'; +import 'package:animated_splash/animated_splash.dart'; +import 'package:gmailapp/screens/list_view.dart'; + + +void main(){ + runApp(MyApp()); +} + +class MyApp extends StatelessWidget { + + + final Function duringSplash = () { + return 1 ; + }; + final Map op = {1: MailList()}; + + @override + Widget build(BuildContext context) { + return MaterialApp( + title : 'Gmail App', + debugShowCheckedModeBanner: false, + theme: ThemeData( + + primaryColor: Colors.purple, + accentColor: Colors.yellow, + ), + home: AnimatedSplash( + imagePath: 'assets/gmaildribbble.gif', + home: MailList(), + customFunction: duringSplash, + duration: 5000, + type: AnimatedSplashType.BackgroundProcess, + outputAndHome: op, + ), + ); + } +} + diff --git a/gmailapp/lib/models/helpers.dart b/gmailapp/lib/models/helpers.dart new file mode 100644 index 0000000..68e2fbe --- /dev/null +++ b/gmailapp/lib/models/helpers.dart @@ -0,0 +1,91 @@ +import 'package:sqflite/sqflite.dart'; +import 'dart:async'; +import 'dart:io'; +import './mail.dart'; +import 'package:path_provider/path_provider.dart'; + +class DbHelper{ + + static DbHelper _helper ; + static Database _database ; + + DbHelper._createInstane(); + + factory DbHelper (){ + + if(_helper ==null) + _helper = DbHelper._createInstane(); + + return _helper ; + } + + Future get database async{ + + if(_database==null) + _database = await initializeDb(); + + return _database; + } + + + Future initializeDb() async { + + Directory directory = await getApplicationDocumentsDirectory(); + String path = directory.path + 'mail1.db'; + + var mailDataBase = await openDatabase(path,version:1,onCreate: _createDb) ; + + return mailDataBase; + } + + void _createDb(Database db,int version) async { + + await db.execute('CREATE TABLE "Mail" ("id" INTEGER PRIMARY KEY NOT NULL ,"to" TEXT,"from" TEXT,"sub" TEXT,"content" TEXT,"fav" TEXT,"date" TEXT,"cc" TEXT,"bcc" TEXT)'); + } + + + Future >> getMailMapList() async { + + Database db = await this.database; + var list = db.rawQuery('SELECT * from "Mail"'); + return list; + } + + Future addMail(Mail mail) async { + + Database db = await this.database; + + int x = await db.insert('Mail',mail.toMap()); + return x ; + + } + + Future deleteMail(int id) async { + + Database db = await this.database ; + + int x = await db.delete('Mail',where :'"id"=?',whereArgs: [id]); + return x ; + } + + Future updateFav(Mail mail) async { + Database db = await this.database; + + var x = await db.update('Mail', mail.toMap() ,where:'id=?',whereArgs:[mail.id] ); + return x ; + } + Future> getMailList() async{ + + var mailMapList = await getMailMapList(); + int count = mailMapList.length; + + List mailList = List(); + + for(int i=0;i toMap(){ + + var map = Map(); + + if(id!=null) + map['id'] = id; + + map['from'] = from; + map['to'] = to; + map['sub'] = sub; + map['content'] = content; + map['date'] = date; + map['cc'] = cc; + map['bcc'] = bcc; + map['fav'] = fav.toString() ; + + return map; + } + + static Mail toObject(Mapmap){ + + return Mail( + + id: map['id'], + to : map['to'], + from : map['from'], + sub : map['sub'], + content : map['content'], + cc : map['cc'], + bcc : map['bcc'], + date : map['date'], + fav : map['fav']=='true' ? true : false , + ); + + } +} + diff --git a/gmailapp/lib/screens/compose.dart b/gmailapp/lib/screens/compose.dart new file mode 100644 index 0000000..4a42dc3 --- /dev/null +++ b/gmailapp/lib/screens/compose.dart @@ -0,0 +1,388 @@ +import 'package:flutter/material.dart'; + +import 'package:gmailapp/models/helpers.dart'; +import 'package:gmailapp/models/mail.dart'; +import 'package:intl/intl.dart'; +import 'package:flutter/cupertino.dart'; +import 'package:mailer/mailer.dart'; +import 'package:mailer/smtp_server.dart'; +import 'dart:async'; + +class Compose extends StatefulWidget { + @override + _ComposeState createState() => _ComposeState(); +} + +class _ComposeState extends State { + TextEditingController toController = TextEditingController(); + TextEditingController fromController = TextEditingController(); + TextEditingController passwordController = TextEditingController(); + TextEditingController ccController = TextEditingController(); + TextEditingController bccController = TextEditingController(); + TextEditingController subController = TextEditingController(); + TextEditingController contentController = TextEditingController(); + DbHelper helper = DbHelper(); + bool dropDown = false; + bool showHidden = false; + bool save = true; + bool showPassword = false; + + void _showPassword() { + setState(() { + showPassword = true; + }); + } + + void _set() { + setState(() { + save = false; + }); + } + + void _changed() { + setState(() { + dropDown = !dropDown; + }); + } + + final Mail mail = Mail(to: '', from: '', sub: ''); + final _formKey = GlobalKey(); + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: Text('Compose'), + actions: [ + IconButton(icon:Icon(Icons.info_outline, + color: Colors.yellow, + ), + onPressed:() { + showInfoDialog(context); + } , + ), + IconButton( + icon: Icon( + Icons.send, + color: Colors.yellow, + ), + onPressed: () async { + if (_formKey.currentState.validate()) { + showToast(context, 'loading'); + var error = await mailer(); + debugPrint('msg : '+error); + if (error.length > 45) error = "Invalid Mail Address "; + if (save) { + showAlertDialog(context); + } else { + showError(context, error); + } + setState(() { + save =true ; + }); + // showAlertDialog(context); + } + }, + ) + ], + ), + body: Form( + key: _formKey, + child: Padding( + padding: EdgeInsets.all(15), + child: ListView( + children: [ + Padding( + padding: EdgeInsets.all(10), + child: TextFormField( + enableSuggestions: true, + toolbarOptions: ToolbarOptions(copy: true), + autofocus: true, + controller: fromController, + validator: (text) { + debugPrint(text); + if (text.isEmpty) { + return ('Please Enter your mailaddress '); + } + return null; + }, + keyboardType: TextInputType.emailAddress, + onChanged: (value) { + this.mail.from = fromController.text; + _showPassword(); + }, + decoration: InputDecoration( + labelText: 'From :', + hintText: 'ex : name@gmail.com', + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(5.0))), + ), + ), + Visibility( + visible: showPassword, + child: ListTile( + title: TextFormField( + controller: passwordController, + validator: (text) { + if (text.isEmpty) { + return ('Please Enter Your Mail Password '); + } + return null; + }, + obscureText: !showHidden, + keyboardType: TextInputType.visiblePassword, + decoration: InputDecoration( + labelText: 'Password : ', + suffixIcon: IconButton( + icon: !showHidden + ? Icon(Icons.visibility) + : Icon(Icons.visibility_off), + onPressed: () { + setState(() { + showHidden = !showHidden; + }); + }, + ), + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(5.0))), + ), + ), + ), + Padding( + padding: EdgeInsets.all(5), + child: TextFormField( + + enableSuggestions: true, + toolbarOptions: ToolbarOptions(copy: true,paste:true), + controller: toController, + + validator: (text) { + if (text.isEmpty) { + return ('Please Enter the mailaddress of recepient '); + } + return null; + }, + keyboardType: TextInputType.emailAddress, + onChanged: (value) { + this.mail.to = toController.text; + }, + decoration: InputDecoration( + suffixIcon: IconButton( + icon: dropDown + ? Icon(Icons.keyboard_arrow_up) + : Icon(Icons.keyboard_arrow_down), + onPressed: () { + _changed(); + }, + ), + labelText: 'To : ', + hintText: 'ex : name@gmail.com', + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(5.0))), + ), + ), + Visibility( + visible: dropDown, + child: Column( + children: [ + ListTile( + title: TextFormField( + toolbarOptions: ToolbarOptions(copy: true), + controller: ccController, + keyboardType: TextInputType.emailAddress, + onChanged: (value) { + this.mail.cc = ccController.text; + debugPrint(ccController.text); + }, + decoration: InputDecoration( + + labelText: 'Cc : ', + hintText: 'ex : name@gmail.com', + border: OutlineInputBorder( + borderRadius: + BorderRadius.circular(5.0))), + ), + ), + ListTile( + title: TextFormField( + toolbarOptions: ToolbarOptions(copy: true), + enableSuggestions: true, + controller: bccController, + keyboardType: TextInputType.emailAddress, + onChanged: (value) { + this.mail.bcc = bccController.text; + }, + decoration: InputDecoration( + labelText: 'Bcc : ', + hintText: 'ex : name@gmail.com', + border: OutlineInputBorder( + borderRadius: + BorderRadius.circular(5.0))), + ), + ), + ], + )), + Padding( + padding: EdgeInsets.all(5), + child: TextFormField( + maxLines : 3, + controller: subController, + onChanged: (value) { + this.mail.sub = subController.text; + }, + decoration: InputDecoration( + labelText: 'Subject : ', + + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(5.0))), + ), + ), + Padding( + padding: EdgeInsets.all(5), + child: TextFormField( + + controller: contentController, + onChanged: (value) { + this.mail.content = contentController.text; + + }, + maxLines: 40, + decoration: InputDecoration( + labelText: 'Content : ', + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(5.0))), + ), + ), + ], + )), + )); + } + + void showAlertDialog(BuildContext context) { + AlertDialog alert = AlertDialog( + title:Text('Are You Sure to Send This Mail ? ') , + content: Image.asset('assets/confrim.gif'), + actions: [ + FlatButton( + onPressed: () { + Navigator.of(context).pop(); + setState(() { + _save(); + }); + }, + child: Text('Ok',style:TextStyle(fontSize:20) ,)), + FlatButton( + onPressed: () { + Navigator.of(context).pop(); + }, + child: Text('Cancel',style:TextStyle(fontSize:20) ,)), + ], + ); + + showDialog( + context: context, + builder: (BuildContext context) { + return alert; + }); + } + + void showInfoDialog(BuildContext context) { + AlertDialog alert = AlertDialog( + title:Text('Info : ') , + content: Text('https://myaccount.google.com/lesssecureapps \n Go to this page and ‘ON’ the status of Less secure of app of your google account, otherwise, the google would not let you send emails.'), + actions: [ + FlatButton( + onPressed: () { + Navigator.of(context).pop(); }, + child: Text('Ok',style:TextStyle(fontSize:20) ,)), + ], + ); + showDialog( + context: context, + builder: (BuildContext context) { + return alert; }); + } + + void showError(BuildContext context, String msg) { + AlertDialog alert = AlertDialog( + title: Text(msg), + content: Image.asset('assets/comp_3.gif'), + actions: [ + FlatButton( + onPressed: () { + Navigator.of(context).pop(); + }, + child: Text('Cancel')), + ], + ); + showDialog( + context: context, + builder: (BuildContext context) { + return alert; + }); + } + + void _save() async { + showToast(context,'save'); + Navigator.pop(context); + mail.date = (DateFormat.yMMMd().format(DateTime.now())).toString()+" , "+(DateFormat.Hm().format(DateTime.now())).toString(); + if (mail.sub.isEmpty) mail.sub = '(no subject )'; + if (mail.content == null) { + mail.content = " "; + } + await helper.addMail(mail); + } + + Future mailer() async { + String msg; + final smtpServer = gmail(mail.from, passwordController.text); + + final message = Message(); + message.from = Address(mail.from); + message.recipients.add(mail.to); + if(mail.cc!=null&&mail.cc.isNotEmpty){ + message.ccRecipients.add(mail.cc); + } + if(mail.bcc!=null&&mail.bcc.isNotEmpty){ + message.bccRecipients.add(mail.bcc); + } + message.subject = mail.sub; + message.text = mail.content; + + try { + final sendReport = await send(message, smtpServer); + debugPrint('Message Sent ' + sendReport.toString()); + msg = sendReport.toString(); + } on MailerException catch (e) { + msg = e.toString(); + if (this.mounted) { + _set(); + } + debugPrint('message not sent : ' + e.toString()); + } + return msg; + } + + static void showToast(BuildContext context,String w) { + + OverlayEntry overlayEntry; + + overlayEntry = OverlayEntry( + builder: (context) => ToastWidget(w) + ); + Overlay.of(context).insert(overlayEntry); + Timer(Duration(seconds: 6 ), () => overlayEntry.remove()); + + } + } + +class ToastWidget extends StatelessWidget { + final String w; + ToastWidget(this.w); + @override + Widget build(BuildContext context) { + return Scaffold( + body : Center(child: w=='save' ? Image.asset('assets/sendmail.gif',fit: BoxFit.fill,) + :Image.asset('assets/loading1.gif',fit: BoxFit.fill,) ), + ); + } +} diff --git a/gmailapp/lib/screens/detail_view.dart b/gmailapp/lib/screens/detail_view.dart new file mode 100644 index 0000000..20dadf0 --- /dev/null +++ b/gmailapp/lib/screens/detail_view.dart @@ -0,0 +1,263 @@ +import 'package:flutter/material.dart'; +import 'package:gmailapp/models/mail.dart'; +import 'dart:async'; +import 'package:gmailapp/models/helpers.dart'; + + +class MailDetail extends StatefulWidget { + final Mail mail; + + MailDetail(this.mail); + + @override + _MailDetailState createState() => _MailDetailState(this.mail); +} + +class _MailDetailState extends State { + final Mail mail; + bool _isVisible = false; + DbHelper databaseHelper = DbHelper(); + bool _showCc = true; + bool _showBcc = true; + + DbHelper helper = DbHelper(); + void show() { + setState(() { + _isVisible = !(_isVisible); + }); + } + + _MailDetailState(this.mail); + var to = ''; + var cc = ' '; + var bcc = ' '; + + @override + Widget build(BuildContext context) { + String name = ''; + int i = 1; + String x = mail.from[0]; + while (x != "@" && i < mail.from.length) { + name += x; + x = mail.from[i]; + i++; + } + setState(() { + cc = mail.cc; + bcc = mail.bcc; + to = mail.to; + if (mail.cc == null || mail.cc.isEmpty) { + _showCc = false; + cc = "fake"; + } + if (mail.bcc == null || mail.bcc.isEmpty) { + _showBcc = false; + bcc = "fake"; + } + }); + return Scaffold( + appBar: AppBar( + actions: [ + IconButton( + icon: Icon( + Icons.delete, + color: Colors.yellow, + ), + onPressed: () { + showAlertDialog(context); + }), + ], + ), + body: Padding( + padding: EdgeInsets.all(10.0), + child: ListView( + children: [ + ListTile( + trailing: IconButton( + icon: mail.fav + ? Icon(Icons.star, color: Colors.yellow) + : Icon(Icons.star_border), + onPressed: () { + setState(() { + this.mail.fav = + !this.mail.fav; + updateFav(this.mail); + }); + }), + title: Text( + mail.sub, + style: TextStyle(fontSize: 40), + ), + ), + Padding( + padding: EdgeInsets.all(2), + child: Card( + elevation: 5, + child: ListTile( + leading:CircleAvatar( + radius:20, + backgroundColor: Colors.purple, + child: CircleAvatar( + radius:17, + backgroundColor: Colors.yellow, + child: Text( + mail.from[0].toUpperCase(), + style: TextStyle( + color: Colors.purple, + fontSize: 20, + ), + ), + ), + ), + title: Text( + name, + style: TextStyle(fontSize: 20,fontWeight: FontWeight.bold,) + ), + subtitle: Text('to: $to'), + trailing: IconButton( + icon: _isVisible + ? Icon( + Icons.keyboard_arrow_down, + size: 30, + ) + : Icon(Icons.keyboard_arrow_up, size: 30), + onPressed: () { + show(); + }, + color: Colors.purple, + ), + )), + ), + Visibility( + visible: _isVisible, + child: Container( + //padding: EdgeInsets.all(3), + decoration: BoxDecoration( + borderRadius: BorderRadius.circular(8.0), + border: Border.all(color: Colors.purple)), + child: Column( + crossAxisAlignment: CrossAxisAlignment.center, + + children: [ + + ListTile( + leading: Text('From :',style:TextStyle(fontWeight: FontWeight.bold)), + title: Text(mail.from,style:TextStyle(fontWeight: FontWeight.w600)), + ), + ListTile( + leading: Text('To :',style:TextStyle(fontWeight: FontWeight.bold)), + title: Text(mail.to,style:TextStyle(fontWeight: FontWeight.w600)), + ), + ListTile( + leading: Text('Date :',style:TextStyle(fontWeight: FontWeight.bold)), + title: Text(mail.date,style:TextStyle(fontWeight: FontWeight.w600)), + ), + Visibility( + visible: _showCc, + child: ListTile( + leading: Text('Cc :',style:TextStyle(fontWeight: FontWeight.bold)), + title: Text(cc,style:TextStyle(fontWeight: FontWeight.w600)), + ), + ), + Visibility( + visible: _showBcc, + child: ListTile( + leading: Text('Bcc :',style:TextStyle(fontWeight: FontWeight.bold)), + title: Text(bcc,style:TextStyle(fontWeight: FontWeight.w600)), + ), + ), + ListTile( + leading: Icon(Icons.lock_outline), + title: Text("Standard encryption(TLS)\nSee security details",style:TextStyle(fontWeight: FontWeight.w600)), + ), + ], + ), + ), + ), + Padding( + padding: EdgeInsets.all(15), + child: Text(mail.content, + style: TextStyle( + fontSize: 15, + )), + ), + ], + ), + ), + ); + } + + void showAlertDialog(BuildContext context) { + AlertDialog alert = AlertDialog( + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.all(Radius.circular(10)), + ), + content: Image.asset( + 'assets/delete.gif', + width: 450, + height: 300, + ), + actions: [ + FlatButton( + onPressed: () { + Navigator.of(context).pop(); + }, + child: Text( + 'Cancel', + style: TextStyle(fontSize: 20), + )), + FlatButton( + onPressed: () { + Navigator.of(context).pop(); + + setState(() { + _delete(); + }); + showToast(context); + }, + child: Text( + 'Ok', + style: TextStyle(fontSize: 20), + )), + ], + ); + + showDialog( + context: context, + builder: (BuildContext context) { + return alert; + }); + } + + void updateFav(Mail mail) async { + await databaseHelper.updateFav(mail); + } + + void _delete() async { + Navigator.pop(context); + await helper.deleteMail(mail.id); + debugPrint(mail.id.toString()); + } + + static void showToast(BuildContext context) { + OverlayEntry overlayEntry; + + overlayEntry = OverlayEntry(builder: (context) => ToastWidget()); + Overlay.of(context).insert(overlayEntry); + Timer(Duration(seconds: 2), () => overlayEntry.remove()); + } +} + +class ToastWidget extends StatelessWidget { + @override + Widget build(BuildContext context) { + return Scaffold( + backgroundColor: Colors.yellow[400], + body: Center( + child: Image.asset( + 'assets/delete-animation.gif', + fit: BoxFit.fill, + )), + ); + } +} diff --git a/gmailapp/lib/screens/fav_view.dart b/gmailapp/lib/screens/fav_view.dart new file mode 100644 index 0000000..afdf966 --- /dev/null +++ b/gmailapp/lib/screens/fav_view.dart @@ -0,0 +1,148 @@ +import 'package:flutter/material.dart'; +import 'package:gmailapp/models/helpers.dart'; +import 'dart:async'; +import 'package:gmailapp/models/mail.dart'; +import 'package:sqflite/sqflite.dart'; +import './detail_view.dart'; + +class FavView extends StatefulWidget { + @override + _FavViewState createState() => _FavViewState(); +} + +class _FavViewState extends State { + +DbHelper databaseHelper = DbHelper(); + List mailList; + List favList; + int count =0 ; + + @override + Widget build(BuildContext context) { + + if (mailList == null) { + mailList = List(); + updateListView(); + } + return Scaffold( + + body: NestedScrollView( + headerSliverBuilder: (BuildContext context, bool innerBoxIsScrolled) { + return [ + SliverAppBar( + expandedHeight: 200.0, + floating: false, + pinned: true, + flexibleSpace: FlexibleSpaceBar( + // centerTitle: true, + title: Text("Starred", + style: TextStyle( + color: Colors.white, + fontSize: 20.0, + )), + background: Image.asset( + "assets/starred.gif", + fit: BoxFit.cover, + )), + ), + ]; + }, + body: getfavListView(), + ), + ); + } + + ListView getfavListView() { + //updateListView(); + return ListView.builder( + itemCount: count, + itemBuilder: (BuildContext context, int position) { + return Card( + shadowColor: Colors.purple, + + color: Colors.white, + elevation: 10.0, + child: ListTile( + leading : CircleAvatar( + radius:20, + backgroundColor: Colors.purple, + child: CircleAvatar( + radius:17, + backgroundColor: Colors.yellow, + child: Text( + mailList[position].from[0].toUpperCase(), + style: TextStyle( + color: Colors.purple, + fontSize: 20, + ), + ), + ), + ), + title: Text( + + this.mailList[position].from , + overflow: TextOverflow.ellipsis, + style: TextStyle( + color: Colors.black, + fontSize: 22, + ), + ), + subtitle: Text( + this.mailList[position].sub, + overflow: TextOverflow.ellipsis, + ), + trailing: Column( + children: [ + Text(mailList[position].date.substring(0,12)), + Expanded( + child: IconButton( + // iconSize: 5, + icon: this.mailList[position].fav + ? Icon(Icons.star, color: Colors.yellow) + : Icon(Icons.star_border), + + onPressed: () { + setState(() { + this.mailList[position].fav = + !this.mailList[position].fav; + updateFav(this.mailList[position]); + }); + }), + ), + ], + ), + onTap: () { + + showfavDetail(this.mailList[position]); + }, + ), + ); + }); + } + + void updateListView() { + final Future dbFuture = databaseHelper.initializeDb(); + dbFuture.then((db) { + Future> mailListFuture = databaseHelper.getMailList(); + mailListFuture.then((newList) { + setState(() { + this.mailList = newList.where((element)=>element.fav==true).toList().reversed.toList(); + + this.count = mailList.length; + }); + }); + }); + } + + void updateFav(Mail mail) async { + await databaseHelper.updateFav(mail); + updateListView(); + } + + void showfavDetail(Mail mail) async { + await Navigator.push(context, MaterialPageRoute(builder: (context) { + return MailDetail(mail); + })); + //updateListView(); + } +} \ No newline at end of file diff --git a/gmailapp/lib/screens/list_view.dart b/gmailapp/lib/screens/list_view.dart new file mode 100644 index 0000000..a226c2c --- /dev/null +++ b/gmailapp/lib/screens/list_view.dart @@ -0,0 +1,281 @@ +import 'package:flutter/material.dart'; + +import 'package:gmailapp/models/helpers.dart'; +import 'dart:async'; +import 'package:gmailapp/models/mail.dart'; +import './compose.dart'; +import './detail_view.dart'; +import 'package:sqflite/sqflite.dart'; +import 'package:gmailapp/screens/search.dart'; +import './fav_view.dart'; + +class MailList extends StatefulWidget { + @override + _MailListState createState() => _MailListState(); +} + +class _MailListState extends State { + DataSearch item = DataSearch(); + DbHelper databaseHelper = DbHelper(); + List mailList; + bool undo = false; + int count = 0; + + @override + Widget build(BuildContext context) { + if (mailList == null) { + mailList = List(); + updateListView(); + } + + return Scaffold( + appBar: AppBar( + elevation: 20, + leading: CircleAvatar( + backgroundColor: Colors.yellow, + radius: 10, + child: CircleAvatar( + radius: 24, + child: Icon( + Icons.send, + color: Colors.yellow, + ), + backgroundColor: Colors.purple, + ), + ), + title: Text('Sent'), + actions: [ + IconButton( + icon: Icon( + Icons.search, + color: Colors.yellow, + size: 30, + ), + onPressed: () { + showSearch(context: context, delegate: DataSearch()); + }), + IconButton( + icon: Icon( + Icons.star, + color: Colors.yellow, + size: 30, + ), + onPressed: () async { + await Navigator.push(context, + MaterialPageRoute(builder: (context) { + return FavView(); + })); + updateListView(); + }) + ], + ), + floatingActionButton: FloatingActionButton( + backgroundColor: Colors.purple, + child: Icon( + Icons.edit, + color: Colors.yellow, + ), + tooltip: 'Compose Email', + onPressed: () async { + await Navigator.push(context, MaterialPageRoute(builder: (context) { + return Compose(); + })); + updateListView(); + }, + ), + body: mailList.length == 0 + ? Center( + child: Image.asset( + "assets/zero-inbox.jpg", + fit: BoxFit.fill, + height: 620, + + ), + + ) + : getMailListView(), + ); + } + + ListView getMailListView() { + // updateListView(); + return ListView.builder( + itemCount: count, + itemBuilder: (BuildContext context, int position) { + return Dismissible( + key: ObjectKey(mailList[position]), + background: deleteBackground(), + onDismissed: (direction) { + // undo = false; + _delete(mailList[position].id); + showToast(context, 'delete'); + updateListView(); + }, + child: Card( + margin: EdgeInsets.all(6), + shadowColor: Colors.purple, + color: Colors.white, + elevation: 10.0, + child: ListTile( + leading: CircleAvatar( + radius: 20, + backgroundColor: Colors.purple, + child: CircleAvatar( + radius: 17, + backgroundColor: Colors.yellow, + child: Text( + mailList[position].from[0].toUpperCase(), + style: TextStyle( + color: Colors.purple, + fontSize: 20, + ), + ), + ), + ), + title: Text( + this.mailList[position].from, + overflow: TextOverflow.ellipsis, + style: TextStyle( + color: Colors.black, + fontSize: 22, + ), + ), + subtitle: Text( + this.mailList[position].sub, + overflow: TextOverflow.ellipsis, + ), + trailing: Column( + children: [ + Text(mailList[position].date.substring(0, 12)), + Expanded( + child: IconButton( + // iconSize: 5, + icon: this.mailList[position].fav + ? Icon(Icons.star, color: Colors.yellow) + : Icon(Icons.star_border), + onPressed: () { + setState(() { + this.mailList[position].fav = + !this.mailList[position].fav; + updateFav(this.mailList[position]); + }); + }), + ), + ], + ), + onTap: () { + showToast(context, 'detail'); + showDetail(this.mailList[position]); + }, + ), + )); + }); + } + + void updateListView() { + final Future dbFuture = databaseHelper.initializeDb(); + dbFuture.then((db) { + Future> mailListFuture = databaseHelper.getMailList(); + + mailListFuture.then((newList) { + setState(() { + this.mailList = newList.reversed.toList(); + this.count = newList.length; + }); + }); + }); + } + + void updateFav(Mail mail) async { + await databaseHelper.updateFav(mail); + } + + void showDetail(Mail mail) async { + await Navigator.push(context, MaterialPageRoute(builder: (context) { + return MailDetail(mail); + })); + updateListView(); + } + + Widget deleteBackground() { + return Container( + alignment: Alignment.center, + padding: EdgeInsets.all(15), + color: Colors.red, + child: Icon( + Icons.delete, + color: Colors.white, + ), + ); + } + + void _delete(int id) async { + await databaseHelper.deleteMail(id); + updateListView(); + debugPrint(id.toString()); + } + + void showAlertDialog(BuildContext context, int id) { + AlertDialog alert = AlertDialog( + title: Text('Confrim : '), + content: Image.asset('assert/noresults.jpg'), + actions: [ + FlatButton( + onPressed: () { + Navigator.of(context).pop(); + }, + child: Text( + 'Cancel', + style: TextStyle(fontSize: 20), + )), + FlatButton( + onPressed: () { + Navigator.of(context).pop(); + + setState(() { + _delete(id); + }); + }, + child: Text( + 'Ok', + style: TextStyle(fontSize: 20), + )), + ], + ); + + showDialog( + context: context, + builder: (BuildContext context) { + return alert; + }); + } + + static void showToast(BuildContext context, String w) { + OverlayEntry overlayEntry; + + overlayEntry = OverlayEntry(builder: (context) => ToastWidget(w)); + Overlay.of(context).insert(overlayEntry); + Timer(Duration(seconds: 2), () => overlayEntry.remove()); + } +} + +class ToastWidget extends StatelessWidget { + final String w; + @override + ToastWidget(this.w); + Widget build(BuildContext context) { + return Scaffold( + backgroundColor: Colors.yellow[400], + body: Center( + child: w == 'detail' + ? Image.asset( + 'assets/mail_detail.gif', + fit: BoxFit.fill, + ) + : Image.asset( + 'assets/delete-animation.gif', + fit: BoxFit.fill, + )), + ); + } +} diff --git a/gmailapp/lib/screens/search.dart b/gmailapp/lib/screens/search.dart new file mode 100644 index 0000000..912673c --- /dev/null +++ b/gmailapp/lib/screens/search.dart @@ -0,0 +1,144 @@ +import 'package:flutter/material.dart'; +import 'package:sqflite/sqflite.dart'; +import 'package:gmailapp/models/helpers.dart'; +import 'package:gmailapp/models/mail.dart'; +import './detail_view.dart'; +import 'dart:async'; + + +class DataSearch extends SearchDelegate { + + + List mailList = []; + var sugg =[]; + Map getIndex ={}; + var sub = [] ; + int count; + DbHelper databaseHelper = DbHelper(); + void updateListView1() { + final Future dbFuture = databaseHelper.initializeDb(); + dbFuture.then((db) { + Future> mailListFuture = databaseHelper.getMailList(); + mailListFuture.then((newList) { + + this.mailList = newList; + this.count = newList.length; + for(int i=0;i buildActions(BuildContext context) { + + return [ + IconButton( + icon: Icon(Icons.clear), + color: Colors.purple, + onPressed: () { + query = ""; + }, + ) + ]; + } + + @override + Widget buildLeading(BuildContext context) { + sub.clear(); + // sugg.clear(); + getIndex.clear(); + updateListView1(); + return IconButton( + icon: AnimatedIcon( + icon: AnimatedIcons.menu_arrow, + progress: transitionAnimation, + color: Colors.purple, + ), + onPressed: () { + close(context, null); + }); + } + + @override + buildResults(BuildContext context) { + + return null ; + } + + @override + Widget buildSuggestions(BuildContext context) { + + var list = query.isEmpty + ? sugg + : sub.where((element) => element.startsWith(query)).toList(); + + + + if(list.length==0) + { + return Scaffold( + + body : Image.asset('assets/no_result.gif'), + ); + } + + + return ListView.builder( + itemBuilder: (context, index) => ListTile( + onTap: () async { + showToast(context); + await Navigator.push(context, MaterialPageRoute(builder: (context) { + return MailDetail(mailList.elementAt(getIndex[list[index]])); + })); + }, + leading: Icon(Icons.contact_mail), + title: RichText( + text: TextSpan( + text: list[index].substring(0, query.length), + style: TextStyle( + color: Colors.red, fontWeight: FontWeight.bold, fontSize: 20), + children: [ + TextSpan( + text: list[index].substring(query.length), + style: TextStyle(color: Colors.black, fontSize: 20), + ) + ]), + ), + ), + itemCount: list.length, + ); + + + + } + static void showToast(BuildContext context) { + + OverlayEntry overlayEntry; + + overlayEntry = OverlayEntry( + builder: (context) => ToastWidget() + ); + Overlay.of(context).insert(overlayEntry); + Timer(Duration(seconds: 3), () => overlayEntry.remove()); + + } + } + + class ToastWidget extends StatelessWidget { + @override + Widget build(BuildContext context) { + return Scaffold( + body : Center(child: Image.asset('assets/gmailsearch.gif',fit: BoxFit.fill,)), + ); + } +} \ No newline at end of file diff --git a/gmailapp/pubspec.lock b/gmailapp/pubspec.lock new file mode 100644 index 0000000..41388cd --- /dev/null +++ b/gmailapp/pubspec.lock @@ -0,0 +1,315 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + animated_splash: + dependency: "direct main" + description: + name: animated_splash + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.0" + archive: + dependency: transitive + description: + name: archive + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.13" + args: + dependency: transitive + description: + name: args + url: "https://pub.dartlang.org" + source: hosted + version: "1.6.0" + async: + dependency: transitive + description: + name: async + url: "https://pub.dartlang.org" + source: hosted + version: "2.4.1" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.0" + charcode: + dependency: transitive + description: + name: charcode + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.3" + collection: + dependency: transitive + description: + name: collection + url: "https://pub.dartlang.org" + source: hosted + version: "1.14.12" + convert: + dependency: transitive + description: + name: convert + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.1" + crypto: + dependency: transitive + description: + name: crypto + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.4" + cupertino_icons: + dependency: "direct main" + description: + name: cupertino_icons + url: "https://pub.dartlang.org" + source: hosted + version: "0.1.3" + flare_dart: + dependency: transitive + description: + name: flare_dart + url: "https://pub.dartlang.org" + source: hosted + version: "2.3.4" + flare_flutter: + dependency: transitive + description: + name: flare_flutter + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.3" + flare_loading: + dependency: transitive + description: + name: flare_loading + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.1" + flare_splash_screen: + dependency: "direct main" + description: + name: flare_splash_screen + url: "https://pub.dartlang.org" + source: hosted + version: "3.0.1" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + image: + dependency: transitive + description: + name: image + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.12" + intl: + dependency: "direct main" + description: + name: intl + url: "https://pub.dartlang.org" + source: hosted + version: "0.16.1" + logging: + dependency: transitive + description: + name: logging + url: "https://pub.dartlang.org" + source: hosted + version: "0.11.4" + mailer: + dependency: "direct main" + description: + name: mailer + url: "https://pub.dartlang.org" + source: hosted + version: "3.0.4" + matcher: + dependency: transitive + description: + name: matcher + url: "https://pub.dartlang.org" + source: hosted + version: "0.12.6" + meta: + dependency: transitive + description: + name: meta + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.8" + mime: + dependency: transitive + description: + name: mime + url: "https://pub.dartlang.org" + source: hosted + version: "0.9.6+3" + path: + dependency: transitive + description: + name: path + url: "https://pub.dartlang.org" + source: hosted + version: "1.6.4" + path_provider: + dependency: "direct main" + description: + name: path_provider + url: "https://pub.dartlang.org" + source: hosted + version: "1.6.9" + path_provider_macos: + dependency: transitive + description: + name: path_provider_macos + url: "https://pub.dartlang.org" + source: hosted + version: "0.0.4+3" + path_provider_platform_interface: + dependency: transitive + description: + name: path_provider_platform_interface + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.2" + pedantic: + dependency: transitive + description: + name: pedantic + url: "https://pub.dartlang.org" + source: hosted + version: "1.9.0" + petitparser: + dependency: transitive + description: + name: petitparser + url: "https://pub.dartlang.org" + source: hosted + version: "2.4.0" + platform: + dependency: transitive + description: + name: platform + url: "https://pub.dartlang.org" + source: hosted + version: "2.2.1" + plugin_platform_interface: + dependency: transitive + description: + name: plugin_platform_interface + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.2" + quiver: + dependency: transitive + description: + name: quiver + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.3" + 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.7.0" + sqflite: + dependency: "direct main" + description: + name: sqflite + url: "https://pub.dartlang.org" + source: hosted + version: "1.3.0+1" + sqflite_common: + dependency: transitive + description: + name: sqflite_common + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.1" + stack_trace: + dependency: transitive + description: + name: stack_trace + url: "https://pub.dartlang.org" + source: hosted + version: "1.9.3" + stream_channel: + dependency: transitive + description: + name: stream_channel + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.0" + string_scanner: + dependency: transitive + description: + name: string_scanner + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.5" + synchronized: + dependency: transitive + description: + name: synchronized + url: "https://pub.dartlang.org" + source: hosted + version: "2.2.0" + term_glyph: + dependency: transitive + description: + name: term_glyph + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.0" + test_api: + dependency: transitive + description: + name: test_api + url: "https://pub.dartlang.org" + source: hosted + version: "0.2.15" + typed_data: + dependency: transitive + description: + name: typed_data + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.6" + vector_math: + dependency: transitive + description: + name: vector_math + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.8" + xml: + dependency: transitive + description: + name: xml + url: "https://pub.dartlang.org" + source: hosted + version: "3.6.1" +sdks: + dart: ">=2.7.0 <3.0.0" + flutter: ">=1.12.13+hotfix.5 <2.0.0" diff --git a/gmailapp/pubspec.yaml b/gmailapp/pubspec.yaml new file mode 100644 index 0000000..dfda883 --- /dev/null +++ b/gmailapp/pubspec.yaml @@ -0,0 +1,86 @@ +name: gmailapp +description: A new Flutter project. + +# 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: + mailer: ^3.0.4 + flutter: + sdk: flutter + sqflite: any + path_provider: any + intl: ^0.16.1 + flare_splash_screen: ^3.0.1 + animated_splash: ^1.0.0 + + + + + # The following adds the Cupertino Icons font to your application. + # Use with the CupertinoIcons class for iOS style icons. + cupertino_icons: ^0.1.3 + +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: + - assets/ + + # 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/gmailapp/test/widget_test.dart b/gmailapp/test/widget_test.dart new file mode 100644 index 0000000..dd178c0 --- /dev/null +++ b/gmailapp/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:gmailapp/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); + }); +}