diff --git a/Plan_Tasks/Taskplanning_app/macos/Flutter/Flutter-Debug.xcconfig b/Plan_Tasks/Taskplanning_app/macos/Flutter/Flutter-Debug.xcconfig deleted file mode 100644 index c2efd0b..0000000 --- a/Plan_Tasks/Taskplanning_app/macos/Flutter/Flutter-Debug.xcconfig +++ /dev/null @@ -1 +0,0 @@ -#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/Plan_Tasks/Taskplanning_app/macos/Flutter/Flutter-Release.xcconfig b/Plan_Tasks/Taskplanning_app/macos/Flutter/Flutter-Release.xcconfig deleted file mode 100644 index c2efd0b..0000000 --- a/Plan_Tasks/Taskplanning_app/macos/Flutter/Flutter-Release.xcconfig +++ /dev/null @@ -1 +0,0 @@ -#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/README.md b/README.md index 62c7cbb..7771cae 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ Lookup Links: [[Setup Flutter](https://flutter.io/setup/)] [[Widgets Catalog](ht 1. [Enable Splash Screen](/enabling_splash_screen) 1. [Firebase Analytics Integration](/analytics_integration) 1. [Firebase Crashlytics Integration](/firebase_crash_reporting) +1. [Firebase Todo App](/firebase_todo_app) 1. [Google Signin](/google_signin) 1. [Grid Layout](/grid_layout) 1. [Image Editor](/image_editor) diff --git a/Plan_Tasks/Taskplanning_app/.gitignore b/firebase_todo_app/.gitignore similarity index 100% rename from Plan_Tasks/Taskplanning_app/.gitignore rename to firebase_todo_app/.gitignore diff --git a/Plan_Tasks/Taskplanning_app/.metadata b/firebase_todo_app/.metadata similarity index 100% rename from Plan_Tasks/Taskplanning_app/.metadata rename to firebase_todo_app/.metadata diff --git a/Plan_Tasks/Taskplanning_app/analysis_options.yaml b/firebase_todo_app/analysis_options.yaml similarity index 100% rename from Plan_Tasks/Taskplanning_app/analysis_options.yaml rename to firebase_todo_app/analysis_options.yaml diff --git a/Plan_Tasks/Taskplanning_app/android/.gitignore b/firebase_todo_app/android/.gitignore similarity index 100% rename from Plan_Tasks/Taskplanning_app/android/.gitignore rename to firebase_todo_app/android/.gitignore diff --git a/Plan_Tasks/Taskplanning_app/android/app/build.gradle b/firebase_todo_app/android/app/build.gradle similarity index 100% rename from Plan_Tasks/Taskplanning_app/android/app/build.gradle rename to firebase_todo_app/android/app/build.gradle diff --git a/Plan_Tasks/Taskplanning_app/android/app/google-services.json b/firebase_todo_app/android/app/google-services.json similarity index 100% rename from Plan_Tasks/Taskplanning_app/android/app/google-services.json rename to firebase_todo_app/android/app/google-services.json diff --git a/Plan_Tasks/Taskplanning_app/android/app/src/debug/AndroidManifest.xml b/firebase_todo_app/android/app/src/debug/AndroidManifest.xml similarity index 100% rename from Plan_Tasks/Taskplanning_app/android/app/src/debug/AndroidManifest.xml rename to firebase_todo_app/android/app/src/debug/AndroidManifest.xml diff --git a/Plan_Tasks/Taskplanning_app/android/app/src/main/AndroidManifest.xml b/firebase_todo_app/android/app/src/main/AndroidManifest.xml similarity index 100% rename from Plan_Tasks/Taskplanning_app/android/app/src/main/AndroidManifest.xml rename to firebase_todo_app/android/app/src/main/AndroidManifest.xml diff --git a/Plan_Tasks/Taskplanning_app/android/app/src/main/java/io/flutter/app/FlutterMultiDexApplication.java b/firebase_todo_app/android/app/src/main/java/io/flutter/app/FlutterMultiDexApplication.java similarity index 100% rename from Plan_Tasks/Taskplanning_app/android/app/src/main/java/io/flutter/app/FlutterMultiDexApplication.java rename to firebase_todo_app/android/app/src/main/java/io/flutter/app/FlutterMultiDexApplication.java diff --git a/Plan_Tasks/Taskplanning_app/android/app/src/main/kotlin/com/example/todo_app/MainActivity.kt b/firebase_todo_app/android/app/src/main/kotlin/com/example/todo_app/MainActivity.kt similarity index 100% rename from Plan_Tasks/Taskplanning_app/android/app/src/main/kotlin/com/example/todo_app/MainActivity.kt rename to firebase_todo_app/android/app/src/main/kotlin/com/example/todo_app/MainActivity.kt diff --git a/Plan_Tasks/Taskplanning_app/android/app/src/main/res/drawable-v21/launch_background.xml b/firebase_todo_app/android/app/src/main/res/drawable-v21/launch_background.xml similarity index 100% rename from Plan_Tasks/Taskplanning_app/android/app/src/main/res/drawable-v21/launch_background.xml rename to firebase_todo_app/android/app/src/main/res/drawable-v21/launch_background.xml diff --git a/Plan_Tasks/Taskplanning_app/android/app/src/main/res/drawable/launch_background.xml b/firebase_todo_app/android/app/src/main/res/drawable/launch_background.xml similarity index 100% rename from Plan_Tasks/Taskplanning_app/android/app/src/main/res/drawable/launch_background.xml rename to firebase_todo_app/android/app/src/main/res/drawable/launch_background.xml diff --git a/Plan_Tasks/Taskplanning_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/firebase_todo_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png similarity index 100% rename from Plan_Tasks/Taskplanning_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png rename to firebase_todo_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png diff --git a/Plan_Tasks/Taskplanning_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/firebase_todo_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png similarity index 100% rename from Plan_Tasks/Taskplanning_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png rename to firebase_todo_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png diff --git a/Plan_Tasks/Taskplanning_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/firebase_todo_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png similarity index 100% rename from Plan_Tasks/Taskplanning_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png rename to firebase_todo_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png diff --git a/Plan_Tasks/Taskplanning_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/firebase_todo_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png similarity index 100% rename from Plan_Tasks/Taskplanning_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png rename to firebase_todo_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png diff --git a/Plan_Tasks/Taskplanning_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/firebase_todo_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png similarity index 100% rename from Plan_Tasks/Taskplanning_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png rename to firebase_todo_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png diff --git a/Plan_Tasks/Taskplanning_app/android/app/src/main/res/values-night/styles.xml b/firebase_todo_app/android/app/src/main/res/values-night/styles.xml similarity index 100% rename from Plan_Tasks/Taskplanning_app/android/app/src/main/res/values-night/styles.xml rename to firebase_todo_app/android/app/src/main/res/values-night/styles.xml diff --git a/Plan_Tasks/Taskplanning_app/android/app/src/main/res/values/styles.xml b/firebase_todo_app/android/app/src/main/res/values/styles.xml similarity index 100% rename from Plan_Tasks/Taskplanning_app/android/app/src/main/res/values/styles.xml rename to firebase_todo_app/android/app/src/main/res/values/styles.xml diff --git a/Plan_Tasks/Taskplanning_app/android/app/src/profile/AndroidManifest.xml b/firebase_todo_app/android/app/src/profile/AndroidManifest.xml similarity index 100% rename from Plan_Tasks/Taskplanning_app/android/app/src/profile/AndroidManifest.xml rename to firebase_todo_app/android/app/src/profile/AndroidManifest.xml diff --git a/Plan_Tasks/Taskplanning_app/android/build.gradle b/firebase_todo_app/android/build.gradle similarity index 100% rename from Plan_Tasks/Taskplanning_app/android/build.gradle rename to firebase_todo_app/android/build.gradle diff --git a/Plan_Tasks/Taskplanning_app/android/gradle.properties b/firebase_todo_app/android/gradle.properties similarity index 100% rename from Plan_Tasks/Taskplanning_app/android/gradle.properties rename to firebase_todo_app/android/gradle.properties diff --git a/Plan_Tasks/Taskplanning_app/android/gradle/wrapper/gradle-wrapper.properties b/firebase_todo_app/android/gradle/wrapper/gradle-wrapper.properties similarity index 100% rename from Plan_Tasks/Taskplanning_app/android/gradle/wrapper/gradle-wrapper.properties rename to firebase_todo_app/android/gradle/wrapper/gradle-wrapper.properties diff --git a/Plan_Tasks/Taskplanning_app/android/settings.gradle b/firebase_todo_app/android/settings.gradle similarity index 100% rename from Plan_Tasks/Taskplanning_app/android/settings.gradle rename to firebase_todo_app/android/settings.gradle diff --git a/Plan_Tasks/Taskplanning_app/assets/google.svg b/firebase_todo_app/assets/google.svg similarity index 100% rename from Plan_Tasks/Taskplanning_app/assets/google.svg rename to firebase_todo_app/assets/google.svg diff --git a/Plan_Tasks/Taskplanning_app/assets/phone.svg b/firebase_todo_app/assets/phone.svg similarity index 100% rename from Plan_Tasks/Taskplanning_app/assets/phone.svg rename to firebase_todo_app/assets/phone.svg diff --git a/firebase_todo_app/ios/.gitignore b/firebase_todo_app/ios/.gitignore new file mode 100644 index 0000000..79cc4da --- /dev/null +++ b/firebase_todo_app/ios/.gitignore @@ -0,0 +1,45 @@ +.idea/ +.vagrant/ +.sconsign.dblite +.svn/ + +.DS_Store +*.swp +profile + +DerivedData/ +build/ +GeneratedPluginRegistrant.h +GeneratedPluginRegistrant.m + +.generated/ + +*.pbxuser +*.mode1v3 +*.mode2v3 +*.perspectivev3 + +!default.pbxuser +!default.mode1v3 +!default.mode2v3 +!default.perspectivev3 + +xcuserdata + +*.moved-aside + +*.pyc +*sync/ +Icon? +.tags* + +/Flutter/app.flx +/Flutter/app.zip +/Flutter/flutter_assets/ +/Flutter/App.framework +/Flutter/Flutter.framework +/Flutter/Generated.xcconfig +/ServiceDefinitions.json + +Pods/ +.symlinks/ diff --git a/firebase_todo_app/ios/Flutter/AppFrameworkInfo.plist b/firebase_todo_app/ios/Flutter/AppFrameworkInfo.plist new file mode 100644 index 0000000..9625e10 --- /dev/null +++ b/firebase_todo_app/ios/Flutter/AppFrameworkInfo.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + MinimumOSVersion + 11.0 + + diff --git a/firebase_todo_app/ios/Flutter/Debug.xcconfig b/firebase_todo_app/ios/Flutter/Debug.xcconfig new file mode 100644 index 0000000..e8efba1 --- /dev/null +++ b/firebase_todo_app/ios/Flutter/Debug.xcconfig @@ -0,0 +1,2 @@ +#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" +#include "Generated.xcconfig" diff --git a/firebase_todo_app/ios/Flutter/Release.xcconfig b/firebase_todo_app/ios/Flutter/Release.xcconfig new file mode 100644 index 0000000..399e934 --- /dev/null +++ b/firebase_todo_app/ios/Flutter/Release.xcconfig @@ -0,0 +1,2 @@ +#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" +#include "Generated.xcconfig" diff --git a/firebase_todo_app/ios/Podfile b/firebase_todo_app/ios/Podfile new file mode 100644 index 0000000..fdcc671 --- /dev/null +++ b/firebase_todo_app/ios/Podfile @@ -0,0 +1,44 @@ +# Uncomment this line to define a global platform for your project +# platform :ios, '11.0' + +# CocoaPods analytics sends network stats synchronously affecting flutter build latency. +ENV['COCOAPODS_DISABLE_STATS'] = 'true' + +project 'Runner', { + 'Debug' => :debug, + 'Profile' => :release, + 'Release' => :release, +} + +def flutter_root + generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) + unless File.exist?(generated_xcode_build_settings_path) + raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" + end + + File.foreach(generated_xcode_build_settings_path) do |line| + matches = line.match(/FLUTTER_ROOT\=(.*)/) + return matches[1].strip if matches + end + raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" +end + +require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) + +flutter_ios_podfile_setup + +target 'Runner' do + use_frameworks! + use_modular_headers! + + flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) + target 'RunnerTests' do + inherit! :search_paths + end +end + +post_install do |installer| + installer.pods_project.targets.each do |target| + flutter_additional_ios_build_settings(target) + end +end diff --git a/firebase_todo_app/ios/Runner.xcodeproj/project.pbxproj b/firebase_todo_app/ios/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000..90615fb --- /dev/null +++ b/firebase_todo_app/ios/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,429 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXBuildFile section */ + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; + 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 9740EEB21CF90195004384FC /* Debug.xcconfig */; }; + 9740EEB51CF90195004384FC /* Generated.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 9740EEB31CF90195004384FC /* Generated.xcconfig */; }; + 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 = 1430; + ORGANIZATIONNAME = "The Chromium Authors"; + TargetAttributes = { + 97C146ED1CF9000F007C117D = { + CreatedOnToolsVersion = 7.3.1; + LastSwiftMigration = 0910; + }; + }; + }; + buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + 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 */, + 9740EEB51CF90195004384FC /* Generated.xcconfig in Resources */, + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, + 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */, + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}", + ); + name = "Thin Binary"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; + }; + 9740EEB61CF901F6004384FC /* Run Script */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Run Script"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 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 */ + 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_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_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 97C147041CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_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_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + 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 = 1; + 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 = github.nisrulz.persistKeyValue; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_SWIFT3_OBJC_INFERENCE = On; + SWIFT_VERSION = 4.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 = 1; + 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 = github.nisrulz.persistKeyValue; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_SWIFT3_OBJC_INFERENCE = On; + SWIFT_VERSION = 4.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 */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147061CF9000F007C117D /* Debug */, + 97C147071CF9000F007C117D /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 97C146E61CF9000F007C117D /* Project object */; +} diff --git a/firebase_todo_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/firebase_todo_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/firebase_todo_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/firebase_todo_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/firebase_todo_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000..327eb3b --- /dev/null +++ b/firebase_todo_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner.xcworkspace/contents.xcworkspacedata b/firebase_todo_app/ios/Runner.xcworkspace/contents.xcworkspacedata similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner.xcworkspace/contents.xcworkspacedata rename to firebase_todo_app/ios/Runner.xcworkspace/contents.xcworkspacedata diff --git a/firebase_todo_app/ios/Runner/AppDelegate.swift b/firebase_todo_app/ios/Runner/AppDelegate.swift new file mode 100644 index 0000000..71cc41e --- /dev/null +++ b/firebase_todo_app/ios/Runner/AppDelegate.swift @@ -0,0 +1,13 @@ +import UIKit +import Flutter + +@UIApplicationMain +@objc class AppDelegate: FlutterAppDelegate { + override func application( + _ application: UIApplication, + didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]? + ) -> Bool { + GeneratedPluginRegistrant.register(with: self) + return super.application(application, didFinishLaunchingWithOptions: launchOptions) + } +} diff --git a/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..d36b1fa --- /dev/null +++ b/firebase_todo_app/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/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png new file mode 100644 index 0000000..3d43d11 Binary files /dev/null and b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ diff --git a/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png new file mode 100644 index 0000000..28c6bf0 Binary files /dev/null and b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ diff --git a/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png new file mode 100644 index 0000000..2ccbfd9 Binary files /dev/null and b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ diff --git a/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png new file mode 100644 index 0000000..f091b6b Binary files /dev/null and b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ diff --git a/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png new file mode 100644 index 0000000..4cde121 Binary files /dev/null and b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ diff --git a/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png new file mode 100644 index 0000000..d0ef06e Binary files /dev/null and b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ diff --git a/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png new file mode 100644 index 0000000..dcdc230 Binary files /dev/null and b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ diff --git a/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png new file mode 100644 index 0000000..2ccbfd9 Binary files /dev/null and b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ diff --git a/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png new file mode 100644 index 0000000..c8f9ed8 Binary files /dev/null and b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ diff --git a/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png new file mode 100644 index 0000000..a6d6b86 Binary files /dev/null and b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ diff --git a/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png new file mode 100644 index 0000000..a6d6b86 Binary files /dev/null and b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ diff --git a/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png new file mode 100644 index 0000000..75b2d16 Binary files /dev/null and b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ diff --git a/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png new file mode 100644 index 0000000..c4df70d Binary files /dev/null and b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ diff --git a/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png new file mode 100644 index 0000000..6a84f41 Binary files /dev/null and b/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ diff --git a/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/firebase_todo_app/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/firebase_todo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ diff --git a/firebase_todo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/firebase_todo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json new file mode 100644 index 0000000..0bedcf2 --- /dev/null +++ b/firebase_todo_app/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/firebase_todo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/firebase_todo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/firebase_todo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ diff --git a/firebase_todo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/firebase_todo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/firebase_todo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ diff --git a/firebase_todo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/firebase_todo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/firebase_todo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ diff --git a/firebase_todo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/firebase_todo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md new file mode 100644 index 0000000..89c2725 --- /dev/null +++ b/firebase_todo_app/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/firebase_todo_app/ios/Runner/Base.lproj/LaunchScreen.storyboard b/firebase_todo_app/ios/Runner/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..f2e259c --- /dev/null +++ b/firebase_todo_app/ios/Runner/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/firebase_todo_app/ios/Runner/Base.lproj/Main.storyboard b/firebase_todo_app/ios/Runner/Base.lproj/Main.storyboard new file mode 100644 index 0000000..f3c2851 --- /dev/null +++ b/firebase_todo_app/ios/Runner/Base.lproj/Main.storyboard @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/firebase_todo_app/ios/Runner/Info.plist b/firebase_todo_app/ios/Runner/Info.plist new file mode 100644 index 0000000..21c3772 --- /dev/null +++ b/firebase_todo_app/ios/Runner/Info.plist @@ -0,0 +1,49 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + persist_key_value + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + LSRequiresIPhoneOS + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UIViewControllerBasedStatusBarAppearance + + CADisableMinimumFrameDurationOnPhone + + UIApplicationSupportsIndirectInputEvents + + + diff --git a/firebase_todo_app/ios/Runner/Runner-Bridging-Header.h b/firebase_todo_app/ios/Runner/Runner-Bridging-Header.h new file mode 100644 index 0000000..7335fdf --- /dev/null +++ b/firebase_todo_app/ios/Runner/Runner-Bridging-Header.h @@ -0,0 +1 @@ +#import "GeneratedPluginRegistrant.h" \ No newline at end of file diff --git a/Plan_Tasks/Taskplanning_app/lib/AddTodo.dart b/firebase_todo_app/lib/AddTodo.dart similarity index 99% rename from Plan_Tasks/Taskplanning_app/lib/AddTodo.dart rename to firebase_todo_app/lib/AddTodo.dart index 1981d50..c436822 100644 --- a/Plan_Tasks/Taskplanning_app/lib/AddTodo.dart +++ b/firebase_todo_app/lib/AddTodo.dart @@ -5,7 +5,7 @@ import 'package:get/get.dart'; import 'package:github.nisrulz.todo_app/Home.dart'; class AppTodo extends StatefulWidget { - const AppTodo({Key? key}) : super(key: key); + const AppTodo({super.key}); @override State createState() => _AppTodoState(); diff --git a/Plan_Tasks/Taskplanning_app/lib/Delete.dart b/firebase_todo_app/lib/Delete.dart similarity index 100% rename from Plan_Tasks/Taskplanning_app/lib/Delete.dart rename to firebase_todo_app/lib/Delete.dart index f7665a9..dbc4cc0 100644 --- a/Plan_Tasks/Taskplanning_app/lib/Delete.dart +++ b/firebase_todo_app/lib/Delete.dart @@ -1,5 +1,5 @@ -import 'package:flutter/material.dart'; import 'package:cloud_firestore/cloud_firestore.dart'; +import 'package:flutter/material.dart'; import 'package:get/get.dart'; class Delete extends StatelessWidget { diff --git a/Plan_Tasks/Taskplanning_app/lib/Edit.dart b/firebase_todo_app/lib/Edit.dart similarity index 99% rename from Plan_Tasks/Taskplanning_app/lib/Edit.dart rename to firebase_todo_app/lib/Edit.dart index cd0bcd7..27f481f 100644 --- a/Plan_Tasks/Taskplanning_app/lib/Edit.dart +++ b/firebase_todo_app/lib/Edit.dart @@ -8,7 +8,8 @@ class Edit extends StatefulWidget { final String initialTaskType; final String initialCategory; - Edit({ + const Edit({ + super.key, required this.taskId, required this.initialTitle, required this.initialDescription, diff --git a/Plan_Tasks/Taskplanning_app/lib/Home.dart b/firebase_todo_app/lib/Home.dart similarity index 88% rename from Plan_Tasks/Taskplanning_app/lib/Home.dart rename to firebase_todo_app/lib/Home.dart index db6f2cf..22bf6f1 100644 --- a/Plan_Tasks/Taskplanning_app/lib/Home.dart +++ b/firebase_todo_app/lib/Home.dart @@ -2,15 +2,16 @@ import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:firebase_auth/firebase_auth.dart'; import 'package:flutter/material.dart'; import 'package:get/get.dart'; -import 'package:get/get_core/src/get_main.dart'; import 'package:github.nisrulz.todo_app/AddTodo.dart'; import 'package:github.nisrulz.todo_app/Delete.dart'; import 'package:github.nisrulz.todo_app/Edit.dart'; -import 'package:github.nisrulz.todo_app/signIn.dart'; +import 'package:github.nisrulz.todo_app/Signin.dart'; class HomePage extends StatelessWidget { final FirebaseAuth _auth = FirebaseAuth.instance; + HomePage({super.key}); + Future _signOut() async { try { await _auth.signOut(); @@ -107,14 +108,10 @@ class HomePage extends StatelessWidget { onPressed: () { Get.to(() => Edit( taskId: todo.id, - initialTitle: todo[ - 'title'], - initialDescription: todo[ - 'description'], - initialTaskType: todo[ - 'type'], - initialCategory: todo[ - 'category'], + initialTitle: todo['title'], + initialDescription: todo['description'], + initialTaskType: todo['type'], + initialCategory: todo['category'], )); }, icon: Icon(Icons.edit), @@ -128,8 +125,6 @@ class HomePage extends StatelessWidget { ), ElevatedButton.icon( onPressed: () { - - Get.to(() => Delete(taskId: todo.id)); }, icon: Icon(Icons.delete, color: Colors.red), diff --git a/Plan_Tasks/Taskplanning_app/lib/signIn.dart b/firebase_todo_app/lib/Signin.dart similarity index 95% rename from Plan_Tasks/Taskplanning_app/lib/signIn.dart rename to firebase_todo_app/lib/Signin.dart index 5622da9..3add25e 100644 --- a/Plan_Tasks/Taskplanning_app/lib/signIn.dart +++ b/firebase_todo_app/lib/Signin.dart @@ -1,12 +1,11 @@ -import 'package:flutter/material.dart'; -import 'package:flutter_svg/flutter_svg.dart'; -import 'package:get/get.dart'; import 'package:firebase_auth/firebase_auth.dart' as firebase_auth; +import 'package:flutter/material.dart'; +import 'package:get/get.dart'; import 'package:github.nisrulz.todo_app/Home.dart'; -import 'package:github.nisrulz.todo_app/signUp.dart'; +import 'package:github.nisrulz.todo_app/Signup.dart'; class Signin extends StatefulWidget { - const Signin({Key? key}); + const Signin({super.key}); @override State createState() => _SigninState(); @@ -42,7 +41,6 @@ class _SigninState extends State { duration: Duration(seconds: 3), ); - Get.to(() => HomePage()); } catch (e) { Get.snackbar( @@ -74,13 +72,10 @@ class _SigninState extends State { fontWeight: FontWeight.bold), ), const SizedBox(height: 20), - const SizedBox(height: 20), - SizedBox( height: 20, ), - SizedBox(height: 20), Container( width: Get.size.width - 60, diff --git a/Plan_Tasks/Taskplanning_app/lib/signUp.dart b/firebase_todo_app/lib/Signup.dart similarity index 96% rename from Plan_Tasks/Taskplanning_app/lib/signUp.dart rename to firebase_todo_app/lib/Signup.dart index e6455bd..87a53fa 100644 --- a/Plan_Tasks/Taskplanning_app/lib/signUp.dart +++ b/firebase_todo_app/lib/Signup.dart @@ -1,11 +1,10 @@ -import 'package:flutter/material.dart'; -import 'package:flutter_svg/flutter_svg.dart'; -import 'package:get/get.dart'; import 'package:firebase_auth/firebase_auth.dart' as firebase_auth; -import 'package:github.nisrulz.todo_app/signIn.dart'; +import 'package:flutter/material.dart'; +import 'package:get/get.dart'; +import 'package:github.nisrulz.todo_app/Signin.dart'; class Signup extends StatefulWidget { - const Signup({Key? key}); + const Signup({super.key}); @override State createState() => _SignupState(); @@ -72,13 +71,10 @@ class _SignupState extends State { fontWeight: FontWeight.bold), ), const SizedBox(height: 20), - const SizedBox(height: 20), - SizedBox( height: 20, ), - SizedBox(height: 20), Container( width: Get.size.width - 60, diff --git a/Plan_Tasks/Taskplanning_app/lib/firebase_options.dart b/firebase_todo_app/lib/firebase_options.dart similarity index 100% rename from Plan_Tasks/Taskplanning_app/lib/firebase_options.dart rename to firebase_todo_app/lib/firebase_options.dart diff --git a/Plan_Tasks/Taskplanning_app/lib/main.dart b/firebase_todo_app/lib/main.dart similarity index 95% rename from Plan_Tasks/Taskplanning_app/lib/main.dart rename to firebase_todo_app/lib/main.dart index e7f3f8e..8292bbc 100644 --- a/Plan_Tasks/Taskplanning_app/lib/main.dart +++ b/firebase_todo_app/lib/main.dart @@ -1,14 +1,15 @@ import 'package:firebase_core/firebase_core.dart'; import 'package:flutter/material.dart'; import 'package:get/get_navigation/src/root/get_material_app.dart'; -import 'package:github.nisrulz.todo_app/AddTodo.dart'; -import 'package:github.nisrulz.todo_app/signUp.dart'; +import 'package:github.nisrulz.todo_app/Signup.dart'; + import 'firebase_options.dart'; -void main()async{ + +void main() async { WidgetsFlutterBinding.ensureInitialized(); await Firebase.initializeApp( options: DefaultFirebaseOptions.currentPlatform, -); + ); runApp(const MyApp()); } @@ -18,12 +19,10 @@ class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { - return GetMaterialApp( - debugShowCheckedModeBanner: false, + debugShowCheckedModeBanner: false, title: 'Flutter Demo', theme: ThemeData( - colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple), useMaterial3: true, ), diff --git a/Plan_Tasks/Taskplanning_app/macos/.gitignore b/firebase_todo_app/macos/.gitignore similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/.gitignore rename to firebase_todo_app/macos/.gitignore diff --git a/firebase_todo_app/macos/Flutter/Flutter-Debug.xcconfig b/firebase_todo_app/macos/Flutter/Flutter-Debug.xcconfig new file mode 100644 index 0000000..4b81f9b --- /dev/null +++ b/firebase_todo_app/macos/Flutter/Flutter-Debug.xcconfig @@ -0,0 +1,2 @@ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" +#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/firebase_todo_app/macos/Flutter/Flutter-Release.xcconfig b/firebase_todo_app/macos/Flutter/Flutter-Release.xcconfig new file mode 100644 index 0000000..5caa9d1 --- /dev/null +++ b/firebase_todo_app/macos/Flutter/Flutter-Release.xcconfig @@ -0,0 +1,2 @@ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" +#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/Plan_Tasks/Taskplanning_app/macos/Flutter/GeneratedPluginRegistrant.swift b/firebase_todo_app/macos/Flutter/GeneratedPluginRegistrant.swift similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Flutter/GeneratedPluginRegistrant.swift rename to firebase_todo_app/macos/Flutter/GeneratedPluginRegistrant.swift diff --git a/firebase_todo_app/macos/Podfile b/firebase_todo_app/macos/Podfile new file mode 100644 index 0000000..c795730 --- /dev/null +++ b/firebase_todo_app/macos/Podfile @@ -0,0 +1,43 @@ +platform :osx, '10.14' + +# CocoaPods analytics sends network stats synchronously affecting flutter build latency. +ENV['COCOAPODS_DISABLE_STATS'] = 'true' + +project 'Runner', { + 'Debug' => :debug, + 'Profile' => :release, + 'Release' => :release, +} + +def flutter_root + generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'ephemeral', 'Flutter-Generated.xcconfig'), __FILE__) + unless File.exist?(generated_xcode_build_settings_path) + raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure \"flutter pub get\" is executed first" + end + + File.foreach(generated_xcode_build_settings_path) do |line| + matches = line.match(/FLUTTER_ROOT\=(.*)/) + return matches[1].strip if matches + end + raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Flutter-Generated.xcconfig, then run \"flutter pub get\"" +end + +require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) + +flutter_macos_podfile_setup + +target 'Runner' do + use_frameworks! + use_modular_headers! + + flutter_install_all_macos_pods File.dirname(File.realpath(__FILE__)) + target 'RunnerTests' do + inherit! :search_paths + end +end + +post_install do |installer| + installer.pods_project.targets.each do |target| + flutter_additional_macos_build_settings(target) + end +end diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner.xcodeproj/project.pbxproj b/firebase_todo_app/macos/Runner.xcodeproj/project.pbxproj similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner.xcodeproj/project.pbxproj rename to firebase_todo_app/macos/Runner.xcodeproj/project.pbxproj diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/firebase_todo_app/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist rename to firebase_todo_app/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/firebase_todo_app/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme rename to firebase_todo_app/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme diff --git a/firebase_todo_app/macos/Runner.xcworkspace/contents.xcworkspacedata b/firebase_todo_app/macos/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..1d526a1 --- /dev/null +++ b/firebase_todo_app/macos/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/firebase_todo_app/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist rename to firebase_todo_app/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner/AppDelegate.swift b/firebase_todo_app/macos/Runner/AppDelegate.swift similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner/AppDelegate.swift rename to firebase_todo_app/macos/Runner/AppDelegate.swift diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/firebase_todo_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json rename to firebase_todo_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png b/firebase_todo_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png rename to firebase_todo_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png b/firebase_todo_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png rename to firebase_todo_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png b/firebase_todo_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png rename to firebase_todo_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png b/firebase_todo_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png rename to firebase_todo_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png b/firebase_todo_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png rename to firebase_todo_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png b/firebase_todo_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png rename to firebase_todo_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png b/firebase_todo_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png rename to firebase_todo_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner/Base.lproj/MainMenu.xib b/firebase_todo_app/macos/Runner/Base.lproj/MainMenu.xib similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner/Base.lproj/MainMenu.xib rename to firebase_todo_app/macos/Runner/Base.lproj/MainMenu.xib diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner/Configs/AppInfo.xcconfig b/firebase_todo_app/macos/Runner/Configs/AppInfo.xcconfig similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner/Configs/AppInfo.xcconfig rename to firebase_todo_app/macos/Runner/Configs/AppInfo.xcconfig diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner/Configs/Debug.xcconfig b/firebase_todo_app/macos/Runner/Configs/Debug.xcconfig similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner/Configs/Debug.xcconfig rename to firebase_todo_app/macos/Runner/Configs/Debug.xcconfig diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner/Configs/Release.xcconfig b/firebase_todo_app/macos/Runner/Configs/Release.xcconfig similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner/Configs/Release.xcconfig rename to firebase_todo_app/macos/Runner/Configs/Release.xcconfig diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner/Configs/Warnings.xcconfig b/firebase_todo_app/macos/Runner/Configs/Warnings.xcconfig similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner/Configs/Warnings.xcconfig rename to firebase_todo_app/macos/Runner/Configs/Warnings.xcconfig diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner/DebugProfile.entitlements b/firebase_todo_app/macos/Runner/DebugProfile.entitlements similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner/DebugProfile.entitlements rename to firebase_todo_app/macos/Runner/DebugProfile.entitlements diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner/GoogleService-Info.plist b/firebase_todo_app/macos/Runner/GoogleService-Info.plist similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner/GoogleService-Info.plist rename to firebase_todo_app/macos/Runner/GoogleService-Info.plist diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner/Info.plist b/firebase_todo_app/macos/Runner/Info.plist similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner/Info.plist rename to firebase_todo_app/macos/Runner/Info.plist diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner/MainFlutterWindow.swift b/firebase_todo_app/macos/Runner/MainFlutterWindow.swift similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner/MainFlutterWindow.swift rename to firebase_todo_app/macos/Runner/MainFlutterWindow.swift diff --git a/Plan_Tasks/Taskplanning_app/macos/Runner/Release.entitlements b/firebase_todo_app/macos/Runner/Release.entitlements similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/Runner/Release.entitlements rename to firebase_todo_app/macos/Runner/Release.entitlements diff --git a/Plan_Tasks/Taskplanning_app/macos/RunnerTests/RunnerTests.swift b/firebase_todo_app/macos/RunnerTests/RunnerTests.swift similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/RunnerTests/RunnerTests.swift rename to firebase_todo_app/macos/RunnerTests/RunnerTests.swift diff --git a/Plan_Tasks/Taskplanning_app/macos/firebase_app_id_file.json b/firebase_todo_app/macos/firebase_app_id_file.json similarity index 100% rename from Plan_Tasks/Taskplanning_app/macos/firebase_app_id_file.json rename to firebase_todo_app/macos/firebase_app_id_file.json diff --git a/Plan_Tasks/Taskplanning_app/package-lock.json b/firebase_todo_app/package-lock.json similarity index 100% rename from Plan_Tasks/Taskplanning_app/package-lock.json rename to firebase_todo_app/package-lock.json diff --git a/Plan_Tasks/Taskplanning_app/package.json b/firebase_todo_app/package.json similarity index 100% rename from Plan_Tasks/Taskplanning_app/package.json rename to firebase_todo_app/package.json diff --git a/Plan_Tasks/Taskplanning_app/pubspec.yaml b/firebase_todo_app/pubspec.yaml similarity index 100% rename from Plan_Tasks/Taskplanning_app/pubspec.yaml rename to firebase_todo_app/pubspec.yaml diff --git a/Plan_Tasks/Taskplanning_app/test/widget_test.dart b/firebase_todo_app/test/widget_test.dart similarity index 100% rename from Plan_Tasks/Taskplanning_app/test/widget_test.dart rename to firebase_todo_app/test/widget_test.dart diff --git a/Plan_Tasks/Taskplanning_app/web/favicon.png b/firebase_todo_app/web/favicon.png similarity index 100% rename from Plan_Tasks/Taskplanning_app/web/favicon.png rename to firebase_todo_app/web/favicon.png diff --git a/Plan_Tasks/Taskplanning_app/web/icons/Icon-192.png b/firebase_todo_app/web/icons/Icon-192.png similarity index 100% rename from Plan_Tasks/Taskplanning_app/web/icons/Icon-192.png rename to firebase_todo_app/web/icons/Icon-192.png diff --git a/Plan_Tasks/Taskplanning_app/web/icons/Icon-512.png b/firebase_todo_app/web/icons/Icon-512.png similarity index 100% rename from Plan_Tasks/Taskplanning_app/web/icons/Icon-512.png rename to firebase_todo_app/web/icons/Icon-512.png diff --git a/Plan_Tasks/Taskplanning_app/web/icons/Icon-maskable-192.png b/firebase_todo_app/web/icons/Icon-maskable-192.png similarity index 100% rename from Plan_Tasks/Taskplanning_app/web/icons/Icon-maskable-192.png rename to firebase_todo_app/web/icons/Icon-maskable-192.png diff --git a/Plan_Tasks/Taskplanning_app/web/icons/Icon-maskable-512.png b/firebase_todo_app/web/icons/Icon-maskable-512.png similarity index 100% rename from Plan_Tasks/Taskplanning_app/web/icons/Icon-maskable-512.png rename to firebase_todo_app/web/icons/Icon-maskable-512.png diff --git a/Plan_Tasks/Taskplanning_app/web/index.html b/firebase_todo_app/web/index.html similarity index 100% rename from Plan_Tasks/Taskplanning_app/web/index.html rename to firebase_todo_app/web/index.html diff --git a/Plan_Tasks/Taskplanning_app/web/manifest.json b/firebase_todo_app/web/manifest.json similarity index 100% rename from Plan_Tasks/Taskplanning_app/web/manifest.json rename to firebase_todo_app/web/manifest.json diff --git a/Plan_Tasks/Taskplanning_app/windows/.gitignore b/firebase_todo_app/windows/.gitignore similarity index 100% rename from Plan_Tasks/Taskplanning_app/windows/.gitignore rename to firebase_todo_app/windows/.gitignore diff --git a/Plan_Tasks/Taskplanning_app/windows/CMakeLists.txt b/firebase_todo_app/windows/CMakeLists.txt similarity index 100% rename from Plan_Tasks/Taskplanning_app/windows/CMakeLists.txt rename to firebase_todo_app/windows/CMakeLists.txt diff --git a/Plan_Tasks/Taskplanning_app/windows/flutter/CMakeLists.txt b/firebase_todo_app/windows/flutter/CMakeLists.txt similarity index 100% rename from Plan_Tasks/Taskplanning_app/windows/flutter/CMakeLists.txt rename to firebase_todo_app/windows/flutter/CMakeLists.txt diff --git a/Plan_Tasks/Taskplanning_app/windows/flutter/generated_plugin_registrant.cc b/firebase_todo_app/windows/flutter/generated_plugin_registrant.cc similarity index 100% rename from Plan_Tasks/Taskplanning_app/windows/flutter/generated_plugin_registrant.cc rename to firebase_todo_app/windows/flutter/generated_plugin_registrant.cc diff --git a/Plan_Tasks/Taskplanning_app/windows/flutter/generated_plugin_registrant.h b/firebase_todo_app/windows/flutter/generated_plugin_registrant.h similarity index 100% rename from Plan_Tasks/Taskplanning_app/windows/flutter/generated_plugin_registrant.h rename to firebase_todo_app/windows/flutter/generated_plugin_registrant.h diff --git a/Plan_Tasks/Taskplanning_app/windows/flutter/generated_plugins.cmake b/firebase_todo_app/windows/flutter/generated_plugins.cmake similarity index 100% rename from Plan_Tasks/Taskplanning_app/windows/flutter/generated_plugins.cmake rename to firebase_todo_app/windows/flutter/generated_plugins.cmake diff --git a/Plan_Tasks/Taskplanning_app/windows/runner/CMakeLists.txt b/firebase_todo_app/windows/runner/CMakeLists.txt similarity index 100% rename from Plan_Tasks/Taskplanning_app/windows/runner/CMakeLists.txt rename to firebase_todo_app/windows/runner/CMakeLists.txt diff --git a/Plan_Tasks/Taskplanning_app/windows/runner/Runner.rc b/firebase_todo_app/windows/runner/Runner.rc similarity index 100% rename from Plan_Tasks/Taskplanning_app/windows/runner/Runner.rc rename to firebase_todo_app/windows/runner/Runner.rc diff --git a/Plan_Tasks/Taskplanning_app/windows/runner/flutter_window.cpp b/firebase_todo_app/windows/runner/flutter_window.cpp similarity index 100% rename from Plan_Tasks/Taskplanning_app/windows/runner/flutter_window.cpp rename to firebase_todo_app/windows/runner/flutter_window.cpp diff --git a/Plan_Tasks/Taskplanning_app/windows/runner/flutter_window.h b/firebase_todo_app/windows/runner/flutter_window.h similarity index 100% rename from Plan_Tasks/Taskplanning_app/windows/runner/flutter_window.h rename to firebase_todo_app/windows/runner/flutter_window.h diff --git a/Plan_Tasks/Taskplanning_app/windows/runner/main.cpp b/firebase_todo_app/windows/runner/main.cpp similarity index 100% rename from Plan_Tasks/Taskplanning_app/windows/runner/main.cpp rename to firebase_todo_app/windows/runner/main.cpp diff --git a/Plan_Tasks/Taskplanning_app/windows/runner/resource.h b/firebase_todo_app/windows/runner/resource.h similarity index 100% rename from Plan_Tasks/Taskplanning_app/windows/runner/resource.h rename to firebase_todo_app/windows/runner/resource.h diff --git a/Plan_Tasks/Taskplanning_app/windows/runner/resources/app_icon.ico b/firebase_todo_app/windows/runner/resources/app_icon.ico similarity index 100% rename from Plan_Tasks/Taskplanning_app/windows/runner/resources/app_icon.ico rename to firebase_todo_app/windows/runner/resources/app_icon.ico diff --git a/Plan_Tasks/Taskplanning_app/windows/runner/runner.exe.manifest b/firebase_todo_app/windows/runner/runner.exe.manifest similarity index 100% rename from Plan_Tasks/Taskplanning_app/windows/runner/runner.exe.manifest rename to firebase_todo_app/windows/runner/runner.exe.manifest diff --git a/Plan_Tasks/Taskplanning_app/windows/runner/utils.cpp b/firebase_todo_app/windows/runner/utils.cpp similarity index 100% rename from Plan_Tasks/Taskplanning_app/windows/runner/utils.cpp rename to firebase_todo_app/windows/runner/utils.cpp diff --git a/Plan_Tasks/Taskplanning_app/windows/runner/utils.h b/firebase_todo_app/windows/runner/utils.h similarity index 100% rename from Plan_Tasks/Taskplanning_app/windows/runner/utils.h rename to firebase_todo_app/windows/runner/utils.h diff --git a/Plan_Tasks/Taskplanning_app/windows/runner/win32_window.cpp b/firebase_todo_app/windows/runner/win32_window.cpp similarity index 100% rename from Plan_Tasks/Taskplanning_app/windows/runner/win32_window.cpp rename to firebase_todo_app/windows/runner/win32_window.cpp diff --git a/Plan_Tasks/Taskplanning_app/windows/runner/win32_window.h b/firebase_todo_app/windows/runner/win32_window.h similarity index 100% rename from Plan_Tasks/Taskplanning_app/windows/runner/win32_window.h rename to firebase_todo_app/windows/runner/win32_window.h