├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── manifest.json └── index.html ├── assets └── images │ └── profile.jpg ├── android ├── gradle.properties ├── my-release-key.keystore ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── app │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── values │ │ │ │ │ └── styles.xml │ │ │ │ └── values-night │ │ │ │ │ └── styles.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── todo_app │ │ │ │ │ └── MainActivity.kt │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── flutter │ │ │ │ └── plugins │ │ │ │ └── GeneratedPluginRegistrant.java │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ └── profile │ │ │ └── AndroidManifest.xml │ └── build.gradle ├── local.properties ├── settings.gradle ├── build.gradle ├── todo_app_android.iml ├── gradlew.bat └── gradlew ├── lib ├── views │ ├── about_view.dart │ ├── settings_view.dart │ ├── reset_password.dart │ ├── forgot_password_view.dart │ ├── profile_view.dart │ ├── login_view.dart │ ├── registeration_view.dart │ └── todo_view.dart ├── model │ ├── userdb.dart │ ├── todo_model.dart │ ├── user_model.dart │ └── database.dart ├── generated_plugin_registrant.dart ├── widget │ ├── image_selector.dart │ ├── widget_manager.dart │ ├── preference_helper.dart │ ├── image_cropper.dart │ ├── bottomsheetview.dart │ └── todo_widget.dart └── main.dart ├── README.md ├── analysis_options.yaml ├── pubspec.yaml ├── pubspec.lock └── LICENSE /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YakubuLute/Flutter-Tasky-App/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YakubuLute/Flutter-Tasky-App/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YakubuLute/Flutter-Tasky-App/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /assets/images/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YakubuLute/Flutter-Tasky-App/HEAD/assets/images/profile.jpg -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | -------------------------------------------------------------------------------- /android/my-release-key.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YakubuLute/Flutter-Tasky-App/HEAD/android/my-release-key.keystore -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YakubuLute/Flutter-Tasky-App/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YakubuLute/Flutter-Tasky-App/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YakubuLute/Flutter-Tasky-App/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YakubuLute/Flutter-Tasky-App/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YakubuLute/Flutter-Tasky-App/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YakubuLute/Flutter-Tasky-App/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YakubuLute/Flutter-Tasky-App/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YakubuLute/Flutter-Tasky-App/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/todo_app/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.example.todo_app 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /android/local.properties: -------------------------------------------------------------------------------- 1 | sdk.dir=C:\\Users\\Yung Lute\\AppData\\Local\\Android\\sdk 2 | flutter.sdk=C:\\New folder\\Softwares and IDE\\setup\\Dev\\android\\flutter_windows_2.2.3-stable\\flutter 3 | flutter.buildMode=debug 4 | flutter.versionName=1.0.0 5 | flutter.versionCode=1 -------------------------------------------------------------------------------- /lib/views/about_view.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class AboutView extends StatelessWidget { 4 | const AboutView({Key? key}) : super(key: key); 5 | 6 | @override 7 | Widget build(BuildContext context) { 8 | return Container(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip 7 | -------------------------------------------------------------------------------- /lib/views/settings_view.dart: -------------------------------------------------------------------------------- 1 | 2 | import 'package:flutter/material.dart'; 3 | 4 | class SettingsView extends StatelessWidget { 5 | const SettingsView({ Key? key }) : super(key: key); 6 | 7 | @override 8 | Widget build(BuildContext context) { 9 | return Container( 10 | 11 | ); 12 | } 13 | } -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Flutter-Tasky-App- 2 | A task app designed with flutter with registration & login page, add a task view, dark & light theme mode and finally profile settings included. 3 | Backend was built with firebase for authentication and firestore for database. 4 | ### 5 | ### 6 | ### 7 | 8 | 9 | ![iPhone 13 Pro Max - 1](https://user-images.githubusercontent.com/25339037/147892919-bb8f79c6-c251-41dd-8b2b-607f737e8b62.png) 10 | -------------------------------------------------------------------------------- /lib/views/reset_password.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class ResetPasswordView extends StatefulWidget { 4 | const ResetPasswordView({Key? key}) : super(key: key); 5 | 6 | @override 7 | _ResetPasswordViewState createState() => _ResetPasswordViewState(); 8 | } 9 | 10 | class _ResetPasswordViewState extends State { 11 | @override 12 | Widget build(BuildContext context) { 13 | return Container(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /lib/views/forgot_password_view.dart: -------------------------------------------------------------------------------- 1 | 2 | import 'package:flutter/material.dart'; 3 | 4 | class ForgotPasswordView extends StatefulWidget { 5 | const ForgotPasswordView({ Key? key }) : super(key: key); 6 | 7 | @override 8 | _ForgotPasswordViewState createState() => _ForgotPasswordViewState(); 9 | } 10 | 11 | class _ForgotPasswordViewState extends State { 12 | @override 13 | Widget build(BuildContext context) { 14 | return Container( 15 | 16 | ); 17 | } 18 | } -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def localPropertiesFile = new File(rootProject.projectDir, "local.properties") 4 | def properties = new Properties() 5 | 6 | assert localPropertiesFile.exists() 7 | localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } 8 | 9 | def flutterSdkPath = properties.getProperty("flutter.sdk") 10 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties" 11 | apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" 12 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | ext.kotlin_version = '1.3.50' 3 | repositories { 4 | google() 5 | mavenCentral() 6 | } 7 | 8 | dependencies { 9 | classpath 'com.android.tools.build:gradle:3.4.2' //set gradle version to 3.4.2 or 3.3.2 10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 11 | classpath 'com.google.gms:google-services:4.3.10' 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | google() 18 | mavenCentral() 19 | } 20 | } 21 | 22 | rootProject.buildDir = '../build' 23 | subprojects { 24 | project.buildDir = "${rootProject.buildDir}/${project.name}" 25 | project.evaluationDependsOn(':app') 26 | } 27 | 28 | task clean(type: Delete) { 29 | delete rootProject.buildDir 30 | } 31 | -------------------------------------------------------------------------------- /lib/model/userdb.dart: -------------------------------------------------------------------------------- 1 | import 'package:cloud_firestore/cloud_firestore.dart'; 2 | import 'package:flutter/material.dart'; 3 | import 'package:firebase_auth/firebase_auth.dart'; 4 | 5 | class UserDBManager { 6 | //create user database on firestore 7 | Future getCurrentUser() async { 8 | User? user = await FirebaseAuth.instance.currentUser; 9 | return user; 10 | } 11 | 12 | Future getUserData(String userId) async { 13 | DocumentSnapshot userData = 14 | await FirebaseFirestore.instance.collection('users').doc(userId).get(); 15 | 16 | return userData; 17 | } 18 | 19 | Future getUserName() async { 20 | User? user = await FirebaseAuth.instance.currentUser; 21 | DocumentSnapshot? userData = await FirebaseFirestore.instance 22 | .collection('users') 23 | .doc(user!.uid) 24 | .get(); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /lib/model/todo_model.dart: -------------------------------------------------------------------------------- 1 | class TodoModel { 2 | String? todoID; 3 | String? title; 4 | String? date; 5 | String? description; 6 | bool? status; 7 | 8 | TodoModel( 9 | {this.todoID, this.title, this.description, this.date, this.status}); 10 | 11 | //create a map from the model 12 | factory TodoModel.fromMap(Map map) { 13 | return TodoModel( 14 | todoID: map['todoID'], 15 | title: map['title'], 16 | description: map['description'], 17 | date: map['date'], 18 | status: map['status'], 19 | ); 20 | } 21 | 22 | //create a addToMap from the model 23 | Map toMap() { 24 | return { 25 | 'todoID': todoID, 26 | 'title': title, 27 | 'description': description, 28 | 'date': date, 29 | 'status': status, 30 | }; //returns a map 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /lib/generated_plugin_registrant.dart: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | // ignore_for_file: directives_ordering 6 | // ignore_for_file: lines_longer_than_80_chars 7 | 8 | import 'package:cloud_firestore_web/cloud_firestore_web.dart'; 9 | import 'package:firebase_auth_web/firebase_auth_web.dart'; 10 | import 'package:firebase_core_web/firebase_core_web.dart'; 11 | import 'package:image_picker_for_web/image_picker_for_web.dart'; 12 | import 'package:shared_preferences_web/shared_preferences_web.dart'; 13 | 14 | import 'package:flutter_web_plugins/flutter_web_plugins.dart'; 15 | 16 | // ignore: public_member_api_docs 17 | void registerPlugins(Registrar registrar) { 18 | FirebaseFirestoreWeb.registerWith(registrar); 19 | FirebaseAuthWeb.registerWith(registrar); 20 | FirebaseCoreWeb.registerWith(registrar); 21 | ImagePickerPlugin.registerWith(registrar); 22 | SharedPreferencesPlugin.registerWith(registrar); 23 | registrar.registerMessageHandler(); 24 | } 25 | -------------------------------------------------------------------------------- /lib/model/user_model.dart: -------------------------------------------------------------------------------- 1 | import 'package:firebase_auth/firebase_auth.dart'; 2 | 3 | class UserModel { 4 | String? userID; 5 | String? userName; 6 | String? email; 7 | String? profileImageUrl; 8 | 9 | UserModel({this.userID, this.userName, this.email, this.profileImageUrl}); 10 | 11 | //create a map from the model 12 | fromMap(Map map) { 13 | return UserModel( 14 | userID: map['userID'], 15 | userName: map['userName'], 16 | email: map['email'], 17 | profileImageUrl: map['profileImageUrl'], 18 | ); 19 | } 20 | 21 | //create a addToMap from the model 22 | Map toMap() { 23 | return { 24 | 'userID': userID, 25 | 'userName': userName, 26 | 'email': email, 27 | 'profileImageUrl': profileImageUrl, 28 | }; //returns a map 29 | } 30 | 31 | Future getCurrentUser() async { 32 | User? user = await FirebaseAuth.instance.currentUser; 33 | return user; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "todo_app", 3 | "short_name": "todo_app", 4 | "start_url": ".", 5 | "display": "standalone", 6 | "background_color": "#0175C2", 7 | "theme_color": "#0175C2", 8 | "description": "A new Flutter project.", 9 | "orientation": "portrait-primary", 10 | "prefer_related_applications": false, 11 | "icons": [ 12 | { 13 | "src": "icons/Icon-192.png", 14 | "sizes": "192x192", 15 | "type": "image/png" 16 | }, 17 | { 18 | "src": "icons/Icon-512.png", 19 | "sizes": "512x512", 20 | "type": "image/png" 21 | }, 22 | { 23 | "src": "icons/Icon-maskable-192.png", 24 | "sizes": "192x192", 25 | "type": "image/png", 26 | "purpose": "maskable" 27 | }, 28 | { 29 | "src": "icons/Icon-maskable-512.png", 30 | "sizes": "512x512", 31 | "type": "image/png", 32 | "purpose": "maskable" 33 | } 34 | ] 35 | } 36 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /lib/widget/image_selector.dart: -------------------------------------------------------------------------------- 1 | import 'dart:io'; 2 | import 'dart:async'; 3 | import 'package:flutter/material.dart'; 4 | import 'package:image_picker/image_picker.dart'; 5 | 6 | class ImageSelector extends StatefulWidget { 7 | const ImageSelector({Key? key}) : super(key: key); 8 | 9 | @override 10 | ImageSelectorState createState() => ImageSelectorState(); 11 | } 12 | 13 | class ImageSelectorState extends State { 14 | // 15 | 16 | @override 17 | Widget build(BuildContext context) { 18 | return Container(); 19 | } 20 | 21 | Future getImage() async { 22 | File? file; 23 | XFile? xFile; 24 | var imagePath; 25 | 26 | xFile = await ImagePicker() 27 | .pickImage(source: ImageSource.gallery) 28 | .then((value) { 29 | setState(() { 30 | imagePath = File(xFile!.path); 31 | }); 32 | print(value); 33 | print("success"); 34 | print("This is imagePath: $imagePath"); 35 | }).catchError((error) { 36 | print(error); 37 | print("error"); 38 | }); 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /lib/widget/widget_manager.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:get/get.dart'; 3 | import 'package:todo_app/views/todo_view.dart'; 4 | 5 | class WidgetManager { 6 | Widget space(double height, BuildContext context) { 7 | return SizedBox(height: MediaQuery.of(context).size.height * height); 8 | } 9 | 10 | Widget divider() { 11 | return Divider( 12 | color: Colors.white.withOpacity(0.3), 13 | ); 14 | } 15 | 16 | Widget todoDetailsWidget( 17 | String title, String description, String date, BuildContext context) { 18 | return Card( 19 | child: Row( 20 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 21 | children: [ 22 | Container( 23 | width: MediaQuery.of(context).size.width * 0.85, 24 | child: ListTile( 25 | leading: const Icon(Icons.check_circle_outline), 26 | title: Text(title), 27 | subtitle: Text(description), 28 | trailing: const Icon(Icons.notifications), 29 | ), 30 | ), 31 | Expanded( 32 | child: Padding( 33 | padding: const EdgeInsets.only(right: 13.0), 34 | child: Text(date), 35 | ), 36 | ) 37 | ], 38 | ), 39 | ); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- 1 | # This file configures the analyzer, which statically analyzes Dart code to 2 | # check for errors, warnings, and lints. 3 | # 4 | # The issues identified by the analyzer are surfaced in the UI of Dart-enabled 5 | # IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be 6 | # invoked from the command line by running `flutter analyze`. 7 | 8 | # The following line activates a set of recommended lints for Flutter apps, 9 | # packages, and plugins designed to encourage good coding practices. 10 | include: package:flutter_lints/flutter.yaml 11 | 12 | linter: 13 | # The lint rules applied to this project can be customized in the 14 | # section below to disable rules from the `package:flutter_lints/flutter.yaml` 15 | # included above or to enable additional rules. A list of all available lints 16 | # and their documentation is published at 17 | # https://dart-lang.github.io/linter/lints/index.html. 18 | # 19 | # Instead of disabling a lint rule for the entire project in the 20 | # section below, it can also be suppressed for a single line of code 21 | # or a specific dart file by using the `// ignore: name_of_lint` and 22 | # `// ignore_for_file: name_of_lint` syntax on the line or in the file 23 | # producing the lint. 24 | rules: 25 | # avoid_print: false # Uncomment to disable the `avoid_print` rule 26 | # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule 27 | 28 | # Additional information about this file can be found at 29 | # https://dart.dev/guides/language/analysis-options 30 | -------------------------------------------------------------------------------- /android/todo_app_android.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /lib/widget/preference_helper.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:shared_preferences/shared_preferences.dart'; 3 | 4 | ///create shared preference 5 | /// 6 | 7 | class PreferenceManager { 8 | String nameKey = "USERNAME"; 9 | String emailKey = "EMAIL"; 10 | String uidKey = "UID"; 11 | String profileURLKey = "PROFILEURL"; 12 | 13 | //set userdatails 14 | Future setUserName(String userName) async { 15 | SharedPreferences prefs = await SharedPreferences.getInstance(); 16 | prefs.setString(nameKey, userName); 17 | } 18 | 19 | Future setUserEmail(String userEmail) async { 20 | SharedPreferences prefs = await SharedPreferences.getInstance(); 21 | prefs.setString(emailKey, userEmail); 22 | } 23 | 24 | Future setUserID(String userID) async { 25 | SharedPreferences prefs = await SharedPreferences.getInstance(); 26 | prefs.setString(uidKey, userID); 27 | } 28 | 29 | Future setProfileURL(String profileURL) async { 30 | SharedPreferences prefs = await SharedPreferences.getInstance(); 31 | prefs.setString(profileURLKey, profileURL); 32 | } 33 | 34 | //get userdatails 35 | getUserEmail() async { 36 | SharedPreferences prefs = await SharedPreferences.getInstance(); 37 | return prefs.getString(emailKey); 38 | } 39 | 40 | getUsername() async { 41 | SharedPreferences prefs = await SharedPreferences.getInstance(); 42 | var username = prefs.getString(nameKey); 43 | print(username); 44 | return username.toString(); 45 | } 46 | 47 | getUserID() async { 48 | SharedPreferences prefs = await SharedPreferences.getInstance(); 49 | return prefs.getString(uidKey); 50 | } 51 | 52 | getPofileURL() async { 53 | SharedPreferences prefs = await SharedPreferences.getInstance(); 54 | return prefs.getString(profileURLKey); 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /lib/widget/image_cropper.dart: -------------------------------------------------------------------------------- 1 | import 'dart:async'; 2 | import 'dart:io'; 3 | import 'package:image_cropper/image_cropper.dart'; 4 | import 'package:image_picker/image_picker.dart'; 5 | import 'package:flutter/material.dart'; 6 | 7 | class ImageCropperManager extends StatefulWidget { 8 | const ImageCropperManager({Key? key}) : super(key: key); 9 | 10 | ImageCropperWidget createState() => ImageCropperWidget(); 11 | } 12 | 13 | class ImageCropperWidget extends State { 14 | @override 15 | Widget build(BuildContext context) { 16 | return Container(); 17 | } 18 | 19 | final ImagePicker imagePicker = ImagePicker(); 20 | 21 | File? imageFile; 22 | String? imagePath; 23 | Future selectImage({ImageSource imageSource = ImageSource.gallery}) async { 24 | 25 | XFile? selectedFile = await imagePicker.pickImage(source: imageSource); 26 | 27 | File? croppedFile = await ImageCropper.cropImage( 28 | sourcePath: selectedFile!.path, 29 | aspectRatioPresets: [ 30 | CropAspectRatioPreset.square, 31 | CropAspectRatioPreset.ratio3x2, 32 | CropAspectRatioPreset.original, 33 | CropAspectRatioPreset.ratio4x3, 34 | CropAspectRatioPreset.ratio16x9 35 | ], 36 | androidUiSettings: const AndroidUiSettings( 37 | toolbarTitle: 'Select Image', 38 | toolbarColor: Colors.black, 39 | toolbarWidgetColor: Colors.white, 40 | initAspectRatio: CropAspectRatioPreset.original, 41 | lockAspectRatio: false), 42 | iosUiSettings: const IOSUiSettings( 43 | minimumAspectRatio: 1.0, 44 | )); 45 | 46 | setState(() { 47 | imagePath = croppedFile!.path; 48 | }); 49 | print("the path of our image is ${imagePath! + " or" + selectedFile.path}"); 50 | } 51 | 52 | 53 | } 54 | 55 | -------------------------------------------------------------------------------- /lib/model/database.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:firebase_auth/firebase_auth.dart'; 3 | import 'package:firebase_core/firebase_core.dart'; 4 | import 'package:cloud_firestore/cloud_firestore.dart'; 5 | import 'package:todo_app/model/todo_model.dart'; 6 | 7 | class TodoDatabase { 8 | //push data to database 9 | Future addData( 10 | String title, String description, String date, String time) async { 11 | final FirebaseAuth _auth = FirebaseAuth.instance; 12 | final User user = await _auth.currentUser!; 13 | final String uid = user.uid; 14 | 15 | final CollectionReference collectionReference = 16 | FirebaseFirestore.instance.collection('todo'); 17 | await collectionReference.add({ 18 | 'title': title, 19 | 'description': description, 20 | 'date': date, 21 | 'time': time, 22 | }); 23 | } 24 | 25 | final TodoModel todoModel = TodoModel(); 26 | //get data from database 27 | Future getData() async { 28 | final FirebaseAuth _auth = FirebaseAuth.instance; 29 | final User user = await _auth.currentUser!; 30 | final String uid = user.uid; 31 | final CollectionReference collectionReference = 32 | FirebaseFirestore.instance.collection('todo'); 33 | QuerySnapshot snapshot = 34 | await collectionReference.doc(uid).collection('todo').get(); 35 | return snapshot.docs; 36 | } 37 | 38 | //delete data from database 39 | Future deleteData(String id) async { 40 | final FirebaseAuth _auth = FirebaseAuth.instance; 41 | final User user = await _auth.currentUser!; 42 | final String uid = user.uid; 43 | final CollectionReference collectionReference = 44 | FirebaseFirestore.instance.collection('todo'); 45 | await collectionReference 46 | .doc(uid) 47 | .collection('todo') 48 | .doc(id) 49 | .delete(); //delete data 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | def localProperties = new Properties() 2 | def localPropertiesFile = rootProject.file('local.properties') 3 | if (localPropertiesFile.exists()) { 4 | localPropertiesFile.withReader('UTF-8') { reader -> 5 | localProperties.load(reader) 6 | } 7 | } 8 | 9 | def flutterRoot = localProperties.getProperty('flutter.sdk') 10 | if (flutterRoot == null) { 11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") 12 | } 13 | 14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode') 15 | if (flutterVersionCode == null) { 16 | flutterVersionCode = '1' 17 | } 18 | 19 | def flutterVersionName = localProperties.getProperty('flutter.versionName') 20 | if (flutterVersionName == null) { 21 | flutterVersionName = '1.0' 22 | } 23 | 24 | apply plugin: 'com.android.application' 25 | apply plugin: 'kotlin-android' 26 | apply plugin: 'com.google.gms.google-services' 27 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 28 | 29 | 30 | android { 31 | compileSdkVersion 30 32 | 33 | compileOptions { 34 | sourceCompatibility JavaVersion.VERSION_1_8 35 | targetCompatibility JavaVersion.VERSION_1_8 36 | } 37 | 38 | kotlinOptions { 39 | jvmTarget = '1.8' 40 | } 41 | 42 | sourceSets { 43 | main.java.srcDirs += 'src/main/kotlin' 44 | } 45 | 46 | defaultConfig { 47 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 48 | applicationId "com.example.todo_app" 49 | minSdkVersion 21 50 | targetSdkVersion 30 51 | versionCode flutterVersionCode.toInteger() 52 | versionName flutterVersionName 53 | } 54 | 55 | buildTypes { 56 | release { 57 | // TODO: Add your own signing config for the release build. 58 | // Signing with the debug keys for now, so `flutter run --release` works. 59 | signingConfig signingConfigs.debug 60 | } 61 | } 62 | } 63 | 64 | flutter { 65 | source '../..' 66 | } 67 | 68 | dependencies { 69 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" 70 | implementation platform('com.google.firebase:firebase-bom:29.0.2') 71 | implementation 'com.google.firebase:firebase-analytics' 72 | } 73 | 74 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 15 | 16 | 24 | 28 | 33 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 46 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /lib/widget/bottomsheetview.dart: -------------------------------------------------------------------------------- 1 | import 'package:cloud_firestore/cloud_firestore.dart'; 2 | import 'package:firebase_core/firebase_core.dart'; 3 | import "package:get/get.dart"; 4 | import 'package:flutter/material.dart'; 5 | 6 | class BottomSheetView { 7 | //create a method to show the bottom sheet or hide it 8 | // Function showBottomSheet; 9 | Widget bottomSheetView() { 10 | final _firestore = FirebaseFirestore.instance; 11 | return Container( 12 | width: double.infinity, 13 | height: 70, 14 | child: StreamBuilder( 15 | stream: _firestore.collection('todo').snapshots(), 16 | //builder 17 | builder: (context, AsyncSnapshot snapshot) { 18 | final data = snapshot.requireData; 19 | if (snapshot.hasData && data.docs.isNotEmpty) { 20 | //print(snapshot.data!.docs.length); 21 | return Card( 22 | child: ListTile( 23 | leading: const Padding( 24 | padding: EdgeInsets.only(left: 8, right: 8), 25 | child: Icon(Icons.check_circle), 26 | ), 27 | title: Row( 28 | mainAxisAlignment: MainAxisAlignment.start, 29 | children: [ 30 | Text( 31 | "Task Completed", 32 | style: TextStyle( 33 | color: Get.isDarkMode 34 | ? Colors.white 35 | : Colors.blueGrey[900], 36 | ), 37 | ), 38 | const SizedBox(width: 10), 39 | IconButton( 40 | onPressed: () {}, 41 | icon: 42 | const Icon(Icons.arrow_drop_down_circle_outlined)), 43 | ], 44 | ), 45 | trailing: Padding( 46 | padding: const EdgeInsets.only(right: 10.0), 47 | //by default all tasks are uncompleted 48 | //so we query firestore to see if the task is completed 49 | child: Text(data.docs.length.toString()), 50 | ), 51 | ), 52 | ); 53 | } 54 | 55 | if (snapshot.hasError) { 56 | return const Center( 57 | child: Text("Error getting todo's"), 58 | ); 59 | } 60 | return const Center( 61 | child: CircularProgressIndicator(), 62 | ); 63 | }, 64 | ), 65 | ); 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java: -------------------------------------------------------------------------------- 1 | package io.flutter.plugins; 2 | 3 | import androidx.annotation.Keep; 4 | import androidx.annotation.NonNull; 5 | import io.flutter.Log; 6 | 7 | import io.flutter.embedding.engine.FlutterEngine; 8 | 9 | /** 10 | * Generated file. Do not edit. 11 | * This file is generated by the Flutter tool based on the 12 | * plugins that support the Android platform. 13 | */ 14 | @Keep 15 | public final class GeneratedPluginRegistrant { 16 | private static final String TAG = "GeneratedPluginRegistrant"; 17 | public static void registerWith(@NonNull FlutterEngine flutterEngine) { 18 | try { 19 | flutterEngine.getPlugins().add(new io.flutter.plugins.firebase.firestore.FlutterFirebaseFirestorePlugin()); 20 | } catch(Exception e) { 21 | Log.e(TAG, "Error registering plugin cloud_firestore, io.flutter.plugins.firebase.firestore.FlutterFirebaseFirestorePlugin", e); 22 | } 23 | try { 24 | flutterEngine.getPlugins().add(new io.flutter.plugins.firebase.auth.FlutterFirebaseAuthPlugin()); 25 | } catch(Exception e) { 26 | Log.e(TAG, "Error registering plugin firebase_auth, io.flutter.plugins.firebase.auth.FlutterFirebaseAuthPlugin", e); 27 | } 28 | try { 29 | flutterEngine.getPlugins().add(new io.flutter.plugins.firebase.core.FlutterFirebaseCorePlugin()); 30 | } catch(Exception e) { 31 | Log.e(TAG, "Error registering plugin firebase_core, io.flutter.plugins.firebase.core.FlutterFirebaseCorePlugin", e); 32 | } 33 | try { 34 | flutterEngine.getPlugins().add(new io.flutter.plugins.flutter_plugin_android_lifecycle.FlutterAndroidLifecyclePlugin()); 35 | } catch(Exception e) { 36 | Log.e(TAG, "Error registering plugin flutter_plugin_android_lifecycle, io.flutter.plugins.flutter_plugin_android_lifecycle.FlutterAndroidLifecyclePlugin", e); 37 | } 38 | try { 39 | flutterEngine.getPlugins().add(new vn.hunghd.flutter.plugins.imagecropper.ImageCropperPlugin()); 40 | } catch(Exception e) { 41 | Log.e(TAG, "Error registering plugin image_cropper, vn.hunghd.flutter.plugins.imagecropper.ImageCropperPlugin", e); 42 | } 43 | try { 44 | flutterEngine.getPlugins().add(new io.flutter.plugins.imagepicker.ImagePickerPlugin()); 45 | } catch(Exception e) { 46 | Log.e(TAG, "Error registering plugin image_picker, io.flutter.plugins.imagepicker.ImagePickerPlugin", e); 47 | } 48 | try { 49 | flutterEngine.getPlugins().add(new io.flutter.plugins.sharedpreferences.SharedPreferencesPlugin()); 50 | } catch(Exception e) { 51 | Log.e(TAG, "Error registering plugin shared_preferences_android, io.flutter.plugins.sharedpreferences.SharedPreferencesPlugin", e); 52 | } 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /lib/widget/todo_widget.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:cloud_firestore/cloud_firestore.dart'; 3 | import 'package:firebase_auth/firebase_auth.dart'; 4 | import 'package:get/get.dart'; 5 | import 'package:todo_app/model/todo_model.dart'; 6 | import 'package:todo_app/views/login_view.dart'; 7 | import 'package:todo_app/widget/preference_helper.dart'; 8 | 9 | class TodoWidget extends StatefulWidget { 10 | const TodoWidget({Key? key}) : super(key: key); 11 | 12 | TodoWidgetManager createState() => TodoWidgetManager(); 13 | } 14 | 15 | class TodoWidgetManager extends State { 16 | final FirebaseAuth _auth = FirebaseAuth.instance; 17 | final FirebaseFirestore _firestore = FirebaseFirestore.instance; 18 | final TodoModel todoModel = TodoModel(); 19 | @override 20 | Widget build(BuildContext context) { 21 | return Container(); 22 | } 23 | 24 | //widget for todo list view from firebase 25 | Widget todoWidget(BuildContext context) { 26 | Stream _userData = _firestore.collection('todo').snapshots(); 27 | return StreamBuilder( 28 | stream: _userData, 29 | //builder 30 | builder: (context, AsyncSnapshot snapshot) { 31 | final data = snapshot.requireData; 32 | if (snapshot.hasData && snapshot.data!.docs.isNotEmpty) { 33 | //print(snapshot.data!.docs.length); 34 | return ListView.builder( 35 | itemCount: snapshot.data!.docs.length, 36 | itemBuilder: (context, index) { 37 | return Card( 38 | child: ListTile( 39 | leading: const Padding( 40 | padding: EdgeInsets.only(left: 8, right: 8), 41 | child: Icon(Icons.check_circle), 42 | ), 43 | title: Text(data.docs[index]['title']), 44 | subtitle: Text(data.docs[index]['description']), 45 | trailing: Text(data.docs[index]['date'] + 46 | ' ' + 47 | data.docs[index]['time']), 48 | ), 49 | ); 50 | }, 51 | ); 52 | } else if (snapshot.hasError) { 53 | return const Center( 54 | child: Text("Error getting todo's"), 55 | ); 56 | } else if (snapshot.data!.docs.isEmpty) { 57 | const Center( 58 | child: CircularProgressIndicator( 59 | semanticsLabel: "Loading", 60 | color: Colors.teal, 61 | ), 62 | ); 63 | } 64 | return const Center( 65 | child: CircularProgressIndicator(), 66 | ); 67 | }, 68 | ); 69 | } 70 | } 71 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:cloud_firestore/cloud_firestore.dart'; 2 | import 'package:flutter/material.dart'; 3 | import 'package:firebase_auth/firebase_auth.dart'; 4 | import 'package:firebase_core/firebase_core.dart'; 5 | import 'package:get/get.dart'; 6 | import 'package:todo_app/model/userdb.dart'; 7 | import 'package:todo_app/views/login_view.dart'; 8 | import 'package:todo_app/views/todo_view.dart'; 9 | 10 | void main() async { 11 | WidgetsFlutterBinding.ensureInitialized(); 12 | await Firebase.initializeApp( 13 | options: const FirebaseOptions( 14 | apiKey: "AIzaSyC0EjZcy1xhyV0gko4NUy9Js6eIbrSSPG8", 15 | appId: "1:438490687122:web:e789eabb3053cc17b8e84b", 16 | messagingSenderId: "438490687122", 17 | projectId: "todoapp-22445"), 18 | ); 19 | runApp(TodoApp()); 20 | } 21 | 22 | class TodoApp extends StatefulWidget { 23 | const TodoApp({Key? key}) : super(key: key); 24 | 25 | @override 26 | State createState() => _TodoAppState(); 27 | } 28 | 29 | class _TodoAppState extends State { 30 | final FirebaseAuth _auth = FirebaseAuth.instance; 31 | final FirebaseFirestore _firestore = FirebaseFirestore.instance; 32 | final User? user = FirebaseAuth.instance.currentUser; 33 | 34 | bool signedIn = false; 35 | @override 36 | void initState() { 37 | super.initState(); 38 | // Disable persistence on web platforms 39 | FirebaseAuth.instance.setPersistence(Persistence.LOCAL); 40 | _auth.authStateChanges().listen((user) { 41 | // check if user is signed in 42 | if (user != null) { 43 | setState(() { 44 | signedIn = true; 45 | }); 46 | } else { 47 | setState(() { 48 | signedIn = false; 49 | }); 50 | } 51 | }); 52 | } 53 | 54 | Widget build(BuildContext context) { 55 | return GetMaterialApp( 56 | debugShowCheckedModeBanner: false, 57 | theme: ThemeData( 58 | scaffoldBackgroundColor: const Color.fromRGBO(239, 244, 253, 1), 59 | appBarTheme: const AppBarTheme( 60 | textTheme: TextTheme( 61 | headline1: TextStyle( 62 | color: Color.fromRGBO(84, 110, 149, 1), 63 | fontSize: 25, 64 | fontWeight: FontWeight.bold), 65 | ), 66 | iconTheme: IconThemeData( 67 | color: Color.fromRGBO(84, 110, 149, 1), 68 | ), 69 | backgroundColor: Colors.white, 70 | elevation: 0, 71 | ), 72 | ), //for lightmode 73 | darkTheme: ThemeData( 74 | //for darkmode 75 | brightness: Brightness.dark, 76 | ), 77 | //check if user is signed in or not and navigate to the appropriate page 78 | home: signedIn ? TodoView() : LoginView()); 79 | } 80 | } 81 | 82 | // shared_preference 83 | /// firebase_auth 84 | /// core_firebase 85 | /// firestore 86 | /// image_cropper 87 | /// -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: todo_app 2 | description: A new Flutter project. 3 | 4 | # The following line prevents the package from being accidentally published to 5 | # pub.dev using `flutter pub publish`. This is preferred for private packages. 6 | publish_to: 'none' # Remove this line if you wish to publish to pub.dev 7 | 8 | # The following defines the version and build number for your application. 9 | # A version number is three numbers separated by dots, like 1.2.43 10 | # followed by an optional build number separated by a +. 11 | # Both the version and the builder number may be overridden in flutter 12 | # build by specifying --build-name and --build-number, respectively. 13 | # In Android, build-name is used as versionName while build-number used as versionCode. 14 | # Read more about Android versioning at https://developer.android.com/studio/publish/versioning 15 | # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. 16 | # Read more about iOS versioning at 17 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html 18 | version: 1.0.0+1 19 | 20 | environment: 21 | sdk: ">=2.12.0 <3.0.0" 22 | 23 | # Dependencies specify other packages that your package needs in order to work. 24 | # To automatically upgrade your package dependencies to the latest versions 25 | # consider running `flutter pub upgrade --major-versions`. Alternatively, 26 | # dependencies can be manually updated by changing the version numbers below to 27 | # the latest version available on pub.dev. To see which dependencies have newer 28 | # versions available, run `flutter pub outdated`. 29 | dependencies: 30 | flutter: 31 | sdk: flutter 32 | cupertino_icons: ^1.0.2 33 | get: ^4.5.1 34 | intl: ^0.17.0 35 | firebase_auth: ^3.3.3 36 | firebase_core: ^1.10.5 37 | cloud_firestore: ^3.1.4 38 | shared_preferences: ^2.0.11 39 | image_cropper: ^1.4.1 40 | image_picker: ^0.8.4+4 41 | 42 | dev_dependencies: 43 | flutter_test: 44 | sdk: flutter 45 | 46 | # The "flutter_lints" package below contains a set of recommended lints to 47 | # encourage good coding practices. The lint set provided by the package is 48 | # activated in the `analysis_options.yaml` file located at the root of your 49 | # package. See that file for information about deactivating specific lint 50 | # rules and activating additional ones. 51 | flutter_lints: ^1.0.0 52 | 53 | # For information on the generic Dart part of this file, see the 54 | # following page: https://dart.dev/tools/pub/pubspec 55 | 56 | # The following section is specific to Flutter. 57 | flutter: 58 | 59 | # The following line ensures that the Material Icons font is 60 | # included with your application, so that you can use the icons in 61 | # the material Icons class. 62 | uses-material-design: true 63 | 64 | # To add assets to your application, add an assets section, like this: 65 | assets: 66 | - assets/images/profile.jpg 67 | # - images/a_dot_ham.jpeg 68 | 69 | # An image asset can refer to one or more resolution-specific "variants", see 70 | # https://flutter.dev/assets-and-images/#resolution-aware. 71 | 72 | # For details regarding adding assets from package dependencies, see 73 | # https://flutter.dev/assets-and-images/#from-packages 74 | 75 | # To add custom fonts to your application, add a fonts section here, 76 | # in this "flutter" section. Each entry in this list should have a 77 | # "family" key with the font family name, and a "fonts" key with a 78 | # list giving the asset and other descriptors for the font. For 79 | # example: 80 | # fonts: 81 | # - family: Schyler 82 | # fonts: 83 | # - asset: fonts/Schyler-Regular.ttf 84 | # - asset: fonts/Schyler-Italic.ttf 85 | # style: italic 86 | # - family: Trajan Pro 87 | # fonts: 88 | # - asset: fonts/TrajanPro.ttf 89 | # - asset: fonts/TrajanPro_Bold.ttf 90 | # weight: 700 91 | # 92 | # For details regarding fonts from package dependencies, 93 | # see https://flutter.dev/custom-fonts/#from-packages 94 | -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | todo_app 30 | 31 | 32 | 33 | 36 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # Attempt to set APP_HOME 46 | # Resolve links: $0 may be a link 47 | PRG="$0" 48 | # Need this for relative symlinks. 49 | while [ -h "$PRG" ] ; do 50 | ls=`ls -ld "$PRG"` 51 | link=`expr "$ls" : '.*-> \(.*\)$'` 52 | if expr "$link" : '/.*' > /dev/null; then 53 | PRG="$link" 54 | else 55 | PRG=`dirname "$PRG"`"/$link" 56 | fi 57 | done 58 | SAVED="`pwd`" 59 | cd "`dirname \"$PRG\"`/" >/dev/null 60 | APP_HOME="`pwd -P`" 61 | cd "$SAVED" >/dev/null 62 | 63 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 64 | 65 | # Determine the Java command to use to start the JVM. 66 | if [ -n "$JAVA_HOME" ] ; then 67 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 68 | # IBM's JDK on AIX uses strange locations for the executables 69 | JAVACMD="$JAVA_HOME/jre/sh/java" 70 | else 71 | JAVACMD="$JAVA_HOME/bin/java" 72 | fi 73 | if [ ! -x "$JAVACMD" ] ; then 74 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 75 | 76 | Please set the JAVA_HOME variable in your environment to match the 77 | location of your Java installation." 78 | fi 79 | else 80 | JAVACMD="java" 81 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 82 | 83 | Please set the JAVA_HOME variable in your environment to match the 84 | location of your Java installation." 85 | fi 86 | 87 | # Increase the maximum file descriptors if we can. 88 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 89 | MAX_FD_LIMIT=`ulimit -H -n` 90 | if [ $? -eq 0 ] ; then 91 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 92 | MAX_FD="$MAX_FD_LIMIT" 93 | fi 94 | ulimit -n $MAX_FD 95 | if [ $? -ne 0 ] ; then 96 | warn "Could not set maximum file descriptor limit: $MAX_FD" 97 | fi 98 | else 99 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 100 | fi 101 | fi 102 | 103 | # For Darwin, add options to specify how the application appears in the dock 104 | if $darwin; then 105 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 106 | fi 107 | 108 | # For Cygwin, switch paths to Windows format before running java 109 | if $cygwin ; then 110 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 111 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 112 | JAVACMD=`cygpath --unix "$JAVACMD"` 113 | 114 | # We build the pattern for arguments to be converted via cygpath 115 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 116 | SEP="" 117 | for dir in $ROOTDIRSRAW ; do 118 | ROOTDIRS="$ROOTDIRS$SEP$dir" 119 | SEP="|" 120 | done 121 | OURCYGPATTERN="(^($ROOTDIRS))" 122 | # Add a user-defined pattern to the cygpath arguments 123 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 124 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 125 | fi 126 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 127 | i=0 128 | for arg in "$@" ; do 129 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 130 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 131 | 132 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 133 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 134 | else 135 | eval `echo args$i`="\"$arg\"" 136 | fi 137 | i=$((i+1)) 138 | done 139 | case $i in 140 | (0) set -- ;; 141 | (1) set -- "$args0" ;; 142 | (2) set -- "$args0" "$args1" ;; 143 | (3) set -- "$args0" "$args1" "$args2" ;; 144 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 145 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 146 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 147 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 148 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 149 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 150 | esac 151 | fi 152 | 153 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 154 | function splitJvmOpts() { 155 | JVM_OPTS=("$@") 156 | } 157 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 158 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 159 | 160 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 161 | -------------------------------------------------------------------------------- /lib/views/profile_view.dart: -------------------------------------------------------------------------------- 1 | import 'package:cloud_firestore/cloud_firestore.dart'; 2 | import 'package:flutter/foundation.dart'; 3 | import 'package:flutter/material.dart'; 4 | import 'package:firebase_auth/firebase_auth.dart'; 5 | import 'package:get/get.dart'; 6 | import 'package:todo_app/widget/image_cropper.dart'; 7 | import 'package:todo_app/widget/image_selector.dart'; 8 | import 'dart:io'; 9 | import 'dart:async'; 10 | import 'package:image_picker/image_picker.dart'; 11 | 12 | class ProfileView extends StatefulWidget { 13 | const ProfileView({Key? key}) : super(key: key); 14 | 15 | @override 16 | _ProfileViewState createState() => _ProfileViewState(); 17 | } 18 | 19 | class _ProfileViewState extends State { 20 | final ImageSelectorState imageSelectorState = ImageSelectorState(); 21 | XFile? image; 22 | var pickedImage; 23 | final imagePicker = ImagePicker(); 24 | 25 | final FirebaseAuth _auth = FirebaseAuth.instance; 26 | final FirebaseFirestore _firestore = FirebaseFirestore.instance; 27 | final User? _user = FirebaseAuth.instance.currentUser; 28 | String? userName; 29 | String imageUrl = 'assets/images/profile.jpg'; 30 | @override 31 | void initState() { 32 | super.initState(); 33 | 34 | FirebaseFirestore.instance 35 | .collection('users') 36 | .get() 37 | .then((QuerySnapshot querySnapshot) { 38 | querySnapshot.docs.forEach((doc) { 39 | if (doc['email'] == _user?.email) { 40 | setState(() { 41 | userName = doc['name']; 42 | }); 43 | } 44 | }); 45 | }); 46 | } 47 | 48 | Widget build(BuildContext context) { 49 | return Scaffold( 50 | appBar: AppBar( 51 | elevation: 0, 52 | backgroundColor: Colors.transparent, 53 | title: Center( 54 | child: Text( 55 | 'Profile', 56 | style: Theme.of(context) 57 | .textTheme 58 | .headline1! 59 | .copyWith(fontSize: 25, fontWeight: FontWeight.bold), 60 | ), 61 | ), 62 | ), 63 | body: Padding( 64 | padding: const EdgeInsets.only(left: 35, right: 35, top: 30), 65 | child: Center( 66 | child: Column( 67 | mainAxisAlignment: MainAxisAlignment.center, 68 | crossAxisAlignment: CrossAxisAlignment.start, 69 | children: [ 70 | Container( 71 | height: 205, 72 | width: 205, 73 | child: Stack( 74 | children: [ 75 | Container( 76 | height: 200, 77 | width: 200, 78 | child: ClipRRect( 79 | borderRadius: BorderRadius.circular(200), 80 | //load user profile picture 81 | //but first check if the user has a profile picture 82 | //if not, load the default profile picture 83 | //if yes, load the user's profile picture 84 | child: image != null 85 | ? (kIsWeb 86 | ? (Image.network(image!.path)) 87 | : (Image.file(File(image!.path)))) 88 | : Image.asset( 89 | imageUrl, 90 | fit: BoxFit.cover, 91 | ), 92 | ), 93 | ), 94 | Align( 95 | alignment: Alignment.bottomCenter, 96 | child: Padding( 97 | padding: const EdgeInsets.only(bottom: 20), 98 | child: IconButton( 99 | onPressed: () { 100 | //open image selector 101 | getImage(); 102 | }, 103 | icon: const Icon(Icons.camera_alt_outlined)), 104 | ), 105 | ), 106 | ], 107 | ), 108 | decoration: BoxDecoration( 109 | borderRadius: BorderRadius.circular(100), 110 | ), 111 | ), 112 | const SizedBox(height: 20), 113 | Card( 114 | child: Padding( 115 | padding: const EdgeInsets.only(left: 15, right: 15, top: 20), 116 | child: Container( 117 | height: 40, 118 | width: MediaQuery.of(context).size.width * .5, 119 | child: Text("Name: $userName"), 120 | ), 121 | ), 122 | ), 123 | Card( 124 | child: Padding( 125 | padding: const EdgeInsets.only(left: 15, right: 15, top: 20), 126 | child: Container( 127 | height: 40, 128 | width: MediaQuery.of(context).size.width * .5, 129 | child: Text("Email: ${_user?.email}"), 130 | ), 131 | ), 132 | ), 133 | Card( 134 | child: Padding( 135 | padding: const EdgeInsets.only(left: 15, right: 15, top: 20), 136 | child: Container( 137 | height: 40, 138 | width: MediaQuery.of(context).size.width * .5, 139 | child: const Text("Task Completed: 24"), 140 | ), 141 | ), 142 | ), 143 | ], 144 | ), 145 | ), 146 | ), 147 | ); 148 | } 149 | 150 | Future getImage() async { 151 | image = await imagePicker.pickImage( 152 | source: ImageSource.gallery, 153 | imageQuality: 50, 154 | maxWidth: 250, 155 | ); 156 | setState(() { 157 | pickedImage = XFile(image!.path); 158 | //push picked image into firestore 159 | _firestore.collection('users').doc(_user?.email).update({ 160 | 'image': pickedImage.toString(), 161 | }).then((value) { 162 | print('image updated'); 163 | //display a snackbar 164 | Get.snackbar( 165 | 'Success', 166 | 'Image Updated', 167 | snackPosition: SnackPosition.BOTTOM, 168 | backgroundColor: Colors.green, 169 | colorText: Colors.white, 170 | borderRadius: 10, 171 | snackStyle: SnackStyle.FLOATING, 172 | ); 173 | 174 | }).catchError((err) { 175 | //show error message on snackbar 176 | Get.snackbar('Error', err.toString(), 177 | snackPosition: SnackPosition.BOTTOM, 178 | backgroundColor: Colors.red, 179 | colorText: Colors.white, 180 | borderRadius: 10, 181 | margin: EdgeInsets.all(10), 182 | snackStyle: SnackStyle.FLOATING, 183 | duration: Duration(seconds: 3)); 184 | }); 185 | }); 186 | //print(" this is the path of the image " + imageFile); 187 | } 188 | } 189 | -------------------------------------------------------------------------------- /lib/views/login_view.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:get/get.dart'; 3 | import 'package:todo_app/views/forgot_password_view.dart'; 4 | import 'package:todo_app/views/registeration_view.dart'; 5 | import 'package:todo_app/views/todo_view.dart'; 6 | import 'package:firebase_auth/firebase_auth.dart'; 7 | import 'package:firebase_core/firebase_core.dart'; 8 | import 'package:cloud_firestore/cloud_firestore.dart'; 9 | import 'package:todo_app/widget/preference_helper.dart'; 10 | 11 | class LoginView extends StatefulWidget { 12 | const LoginView({Key? key}) : super(key: key); 13 | 14 | @override 15 | _LoginViewState createState() => _LoginViewState(); 16 | } 17 | 18 | class _LoginViewState extends State { 19 | //controllers 20 | final TextEditingController emailController = TextEditingController(); 21 | final TextEditingController passwordController = TextEditingController(); 22 | ////firebase auth /// 23 | final FirebaseAuth _auth = FirebaseAuth.instance; 24 | final FirebaseFirestore _firestore = FirebaseFirestore.instance; 25 | 26 | final PreferenceManager preferenceManager = PreferenceManager(); 27 | 28 | final _formKey = GlobalKey(); 29 | @override 30 | Widget build(BuildContext context) { 31 | return Scaffold( 32 | body: Center( 33 | child: Container( 34 | height: MediaQuery.of(context).size.height * 0.8, 35 | width: MediaQuery.of(context).size.width * 0.8, 36 | child: Card( 37 | elevation: 3, 38 | child: Padding( 39 | padding: const EdgeInsets.all(20), 40 | child: Column( 41 | mainAxisAlignment: MainAxisAlignment.center, 42 | children: [ 43 | Text( 44 | 'Login', 45 | style: Theme.of(context).textTheme.headline1!.copyWith( 46 | fontSize: 20, 47 | fontWeight: FontWeight.bold, 48 | letterSpacing: 1.3, 49 | color: Get.isDarkMode ? Colors.white : Colors.black), 50 | ), 51 | const SizedBox( 52 | height: 15, 53 | ), 54 | const Divider(), 55 | const SizedBox( 56 | height: 50, 57 | ), 58 | Form( 59 | key: _formKey, 60 | child: Column( 61 | mainAxisAlignment: MainAxisAlignment.center, 62 | children: [ 63 | //TODO: Add text fields for email and password 64 | TextFormField( 65 | style: 66 | Theme.of(context).textTheme.bodyText2!.copyWith( 67 | color: Get.isDarkMode 68 | ? Colors.white 69 | : Colors.white, 70 | ), 71 | validator: (value) { 72 | if (value!.isEmpty) { 73 | return 'Please A Valid Email'; 74 | } 75 | return null; 76 | }, 77 | controller: emailController, 78 | decoration: InputDecoration( 79 | labelText: 'Email', 80 | labelStyle: TextStyle( 81 | color: 82 | Get.isDarkMode ? Colors.white : Colors.white, 83 | ), 84 | hintText: 'Email', 85 | hintStyle: TextStyle( 86 | color: 87 | Get.isDarkMode ? Colors.white : Colors.white, 88 | ), 89 | border: OutlineInputBorder( 90 | borderSide: const BorderSide( 91 | color: Colors.white, 92 | ), 93 | borderRadius: BorderRadius.circular(8)), 94 | ), 95 | ), 96 | const SizedBox(height: 30), 97 | 98 | ///second text field ===Password 99 | TextFormField( 100 | style: 101 | Theme.of(context).textTheme.bodyText2!.copyWith( 102 | color: Get.isDarkMode 103 | ? Colors.white 104 | : Colors.white, 105 | ), 106 | validator: (value) { 107 | if (value!.isEmpty || value.length < 6) { 108 | return 'Please enter a valid password'; 109 | } 110 | return null; 111 | }, 112 | controller: passwordController, 113 | obscureText: true, 114 | decoration: InputDecoration( 115 | labelText: 'Password', 116 | labelStyle: TextStyle( 117 | color: 118 | Get.isDarkMode ? Colors.white : Colors.white, 119 | ), 120 | hintText: 'Password', 121 | hintStyle: TextStyle( 122 | color: 123 | Get.isDarkMode ? Colors.white : Colors.white, 124 | ), 125 | border: OutlineInputBorder( 126 | borderSide: const BorderSide( 127 | color: Colors.white, 128 | ), 129 | borderRadius: BorderRadius.circular(8)), 130 | ), 131 | ), 132 | const SizedBox(height: 30), 133 | //form submit button 134 | MaterialButton( 135 | elevation: 3, 136 | height: 45, 137 | highlightElevation: 5, 138 | 139 | color: Get.isDarkMode 140 | ? ThemeData.dark().primaryColor 141 | : const Color.fromRGBO(24, 71, 115, 1), 142 | //onpressed 143 | onPressed: () async { 144 | if (_formKey.currentState!.validate()) { 145 | setState(() { 146 | emailController.text; 147 | passwordController.text; 148 | }); 149 | //sign in with email and password 150 | await _auth 151 | .signInWithEmailAndPassword( 152 | email: emailController.text, 153 | password: passwordController.text) 154 | //if nothing went wrong then do this 155 | .then((value) { 156 | //TODO: Add user to shared prefs 157 | 158 | preferenceManager 159 | .setUserEmail(emailController.text); 160 | preferenceManager.setUserID(value.user!.uid); 161 | // 162 | Get.snackbar( 163 | "Congratulation ", 164 | "You've Signed in successfully", 165 | backgroundColor: Colors.teal, 166 | colorText: Colors.white, 167 | duration: const Duration(seconds: 5), 168 | snackPosition: SnackPosition.BOTTOM, 169 | padding: const EdgeInsets.all(20), 170 | ); 171 | 172 | //navigate to todo view 173 | 174 | Navigator.of(context).pushAndRemoveUntil( 175 | MaterialPageRoute( 176 | builder: (context) => const TodoView()), 177 | (route) => false); 178 | //if there's an error then do this 179 | }).catchError((err) { 180 | Get.snackbar('Error signing in', err.message, 181 | backgroundColor: Colors.red, 182 | colorText: Colors.white, 183 | snackPosition: SnackPosition.BOTTOM, 184 | padding: const EdgeInsets.all(25)); 185 | }); 186 | } 187 | }, 188 | 189 | ///end of onPressed 190 | /// 191 | child: Text( 192 | "Login", 193 | style: TextStyle( 194 | color: 195 | Get.isDarkMode ? Colors.white : Colors.white, 196 | ), 197 | ), 198 | ), 199 | //end of material button 200 | const SizedBox( 201 | height: 20, 202 | ), 203 | 204 | //forgot password 205 | /// 206 | InkWell( 207 | onTap: () { 208 | Navigator.of(context).pushAndRemoveUntil( 209 | MaterialPageRoute( 210 | builder: (context) => 211 | const ForgotPasswordView()), 212 | (route) => false); 213 | }, 214 | child: Text( 215 | "Forgot Password?", 216 | style: TextStyle( 217 | color: Get.isDarkMode 218 | ? Colors.white 219 | : const Color.fromRGBO(24, 71, 115, 1)), 220 | ), 221 | ), 222 | //TODO: sign up here or register here 223 | 224 | const SizedBox( 225 | height: 20, 226 | ), 227 | //registration page 228 | //// 229 | InkWell( 230 | onTap: () { 231 | Navigator.of(context).pushAndRemoveUntil( 232 | MaterialPageRoute( 233 | builder: (context) => 234 | const RegisterationView()), 235 | (route) => false); 236 | }, 237 | child: Text( 238 | "Not having an account? Register here", 239 | style: TextStyle( 240 | decoration: TextDecoration.underline, 241 | color: Get.isDarkMode 242 | ? Colors.white 243 | : const Color.fromRGBO(24, 71, 115, 1), 244 | ), 245 | ), 246 | ), 247 | ], 248 | ), 249 | ), 250 | ], 251 | ), 252 | ), 253 | ), 254 | ), 255 | ), 256 | ); 257 | } 258 | } 259 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://dart.dev/tools/pub/glossary#lockfile 3 | packages: 4 | async: 5 | dependency: transitive 6 | description: 7 | name: async 8 | url: "https://pub.dartlang.org" 9 | source: hosted 10 | version: "2.8.2" 11 | boolean_selector: 12 | dependency: transitive 13 | description: 14 | name: boolean_selector 15 | url: "https://pub.dartlang.org" 16 | source: hosted 17 | version: "2.1.0" 18 | characters: 19 | dependency: transitive 20 | description: 21 | name: characters 22 | url: "https://pub.dartlang.org" 23 | source: hosted 24 | version: "1.2.0" 25 | charcode: 26 | dependency: transitive 27 | description: 28 | name: charcode 29 | url: "https://pub.dartlang.org" 30 | source: hosted 31 | version: "1.3.1" 32 | clock: 33 | dependency: transitive 34 | description: 35 | name: clock 36 | url: "https://pub.dartlang.org" 37 | source: hosted 38 | version: "1.1.0" 39 | cloud_firestore: 40 | dependency: "direct main" 41 | description: 42 | name: cloud_firestore 43 | url: "https://pub.dartlang.org" 44 | source: hosted 45 | version: "3.1.4" 46 | cloud_firestore_platform_interface: 47 | dependency: transitive 48 | description: 49 | name: cloud_firestore_platform_interface 50 | url: "https://pub.dartlang.org" 51 | source: hosted 52 | version: "5.4.9" 53 | cloud_firestore_web: 54 | dependency: transitive 55 | description: 56 | name: cloud_firestore_web 57 | url: "https://pub.dartlang.org" 58 | source: hosted 59 | version: "2.6.4" 60 | collection: 61 | dependency: transitive 62 | description: 63 | name: collection 64 | url: "https://pub.dartlang.org" 65 | source: hosted 66 | version: "1.15.0" 67 | cross_file: 68 | dependency: transitive 69 | description: 70 | name: cross_file 71 | url: "https://pub.dartlang.org" 72 | source: hosted 73 | version: "0.3.2" 74 | cupertino_icons: 75 | dependency: "direct main" 76 | description: 77 | name: cupertino_icons 78 | url: "https://pub.dartlang.org" 79 | source: hosted 80 | version: "1.0.4" 81 | fake_async: 82 | dependency: transitive 83 | description: 84 | name: fake_async 85 | url: "https://pub.dartlang.org" 86 | source: hosted 87 | version: "1.2.0" 88 | ffi: 89 | dependency: transitive 90 | description: 91 | name: ffi 92 | url: "https://pub.dartlang.org" 93 | source: hosted 94 | version: "1.1.2" 95 | file: 96 | dependency: transitive 97 | description: 98 | name: file 99 | url: "https://pub.dartlang.org" 100 | source: hosted 101 | version: "6.1.2" 102 | firebase_auth: 103 | dependency: "direct main" 104 | description: 105 | name: firebase_auth 106 | url: "https://pub.dartlang.org" 107 | source: hosted 108 | version: "3.3.3" 109 | firebase_auth_platform_interface: 110 | dependency: transitive 111 | description: 112 | name: firebase_auth_platform_interface 113 | url: "https://pub.dartlang.org" 114 | source: hosted 115 | version: "6.1.8" 116 | firebase_auth_web: 117 | dependency: transitive 118 | description: 119 | name: firebase_auth_web 120 | url: "https://pub.dartlang.org" 121 | source: hosted 122 | version: "3.3.4" 123 | firebase_core: 124 | dependency: "direct main" 125 | description: 126 | name: firebase_core 127 | url: "https://pub.dartlang.org" 128 | source: hosted 129 | version: "1.10.5" 130 | firebase_core_platform_interface: 131 | dependency: transitive 132 | description: 133 | name: firebase_core_platform_interface 134 | url: "https://pub.dartlang.org" 135 | source: hosted 136 | version: "4.2.2" 137 | firebase_core_web: 138 | dependency: transitive 139 | description: 140 | name: firebase_core_web 141 | url: "https://pub.dartlang.org" 142 | source: hosted 143 | version: "1.5.2" 144 | flutter: 145 | dependency: "direct main" 146 | description: flutter 147 | source: sdk 148 | version: "0.0.0" 149 | flutter_lints: 150 | dependency: "direct dev" 151 | description: 152 | name: flutter_lints 153 | url: "https://pub.dartlang.org" 154 | source: hosted 155 | version: "1.0.4" 156 | flutter_plugin_android_lifecycle: 157 | dependency: transitive 158 | description: 159 | name: flutter_plugin_android_lifecycle 160 | url: "https://pub.dartlang.org" 161 | source: hosted 162 | version: "2.0.5" 163 | flutter_test: 164 | dependency: "direct dev" 165 | description: flutter 166 | source: sdk 167 | version: "0.0.0" 168 | flutter_web_plugins: 169 | dependency: transitive 170 | description: flutter 171 | source: sdk 172 | version: "0.0.0" 173 | get: 174 | dependency: "direct main" 175 | description: 176 | name: get 177 | url: "https://pub.dartlang.org" 178 | source: hosted 179 | version: "4.5.1" 180 | http: 181 | dependency: transitive 182 | description: 183 | name: http 184 | url: "https://pub.dartlang.org" 185 | source: hosted 186 | version: "0.13.4" 187 | http_parser: 188 | dependency: transitive 189 | description: 190 | name: http_parser 191 | url: "https://pub.dartlang.org" 192 | source: hosted 193 | version: "4.0.0" 194 | image_cropper: 195 | dependency: "direct main" 196 | description: 197 | name: image_cropper 198 | url: "https://pub.dartlang.org" 199 | source: hosted 200 | version: "1.4.1" 201 | image_picker: 202 | dependency: "direct main" 203 | description: 204 | name: image_picker 205 | url: "https://pub.dartlang.org" 206 | source: hosted 207 | version: "0.8.4+4" 208 | image_picker_for_web: 209 | dependency: transitive 210 | description: 211 | name: image_picker_for_web 212 | url: "https://pub.dartlang.org" 213 | source: hosted 214 | version: "2.1.4" 215 | image_picker_platform_interface: 216 | dependency: transitive 217 | description: 218 | name: image_picker_platform_interface 219 | url: "https://pub.dartlang.org" 220 | source: hosted 221 | version: "2.4.1" 222 | intl: 223 | dependency: "direct main" 224 | description: 225 | name: intl 226 | url: "https://pub.dartlang.org" 227 | source: hosted 228 | version: "0.17.0" 229 | js: 230 | dependency: transitive 231 | description: 232 | name: js 233 | url: "https://pub.dartlang.org" 234 | source: hosted 235 | version: "0.6.3" 236 | lints: 237 | dependency: transitive 238 | description: 239 | name: lints 240 | url: "https://pub.dartlang.org" 241 | source: hosted 242 | version: "1.0.1" 243 | matcher: 244 | dependency: transitive 245 | description: 246 | name: matcher 247 | url: "https://pub.dartlang.org" 248 | source: hosted 249 | version: "0.12.11" 250 | meta: 251 | dependency: transitive 252 | description: 253 | name: meta 254 | url: "https://pub.dartlang.org" 255 | source: hosted 256 | version: "1.7.0" 257 | path: 258 | dependency: transitive 259 | description: 260 | name: path 261 | url: "https://pub.dartlang.org" 262 | source: hosted 263 | version: "1.8.0" 264 | path_provider_linux: 265 | dependency: transitive 266 | description: 267 | name: path_provider_linux 268 | url: "https://pub.dartlang.org" 269 | source: hosted 270 | version: "2.1.4" 271 | path_provider_platform_interface: 272 | dependency: transitive 273 | description: 274 | name: path_provider_platform_interface 275 | url: "https://pub.dartlang.org" 276 | source: hosted 277 | version: "2.0.1" 278 | path_provider_windows: 279 | dependency: transitive 280 | description: 281 | name: path_provider_windows 282 | url: "https://pub.dartlang.org" 283 | source: hosted 284 | version: "2.0.4" 285 | platform: 286 | dependency: transitive 287 | description: 288 | name: platform 289 | url: "https://pub.dartlang.org" 290 | source: hosted 291 | version: "3.1.0" 292 | plugin_platform_interface: 293 | dependency: transitive 294 | description: 295 | name: plugin_platform_interface 296 | url: "https://pub.dartlang.org" 297 | source: hosted 298 | version: "2.0.2" 299 | process: 300 | dependency: transitive 301 | description: 302 | name: process 303 | url: "https://pub.dartlang.org" 304 | source: hosted 305 | version: "4.2.4" 306 | shared_preferences: 307 | dependency: "direct main" 308 | description: 309 | name: shared_preferences 310 | url: "https://pub.dartlang.org" 311 | source: hosted 312 | version: "2.0.11" 313 | shared_preferences_android: 314 | dependency: transitive 315 | description: 316 | name: shared_preferences_android 317 | url: "https://pub.dartlang.org" 318 | source: hosted 319 | version: "2.0.9" 320 | shared_preferences_ios: 321 | dependency: transitive 322 | description: 323 | name: shared_preferences_ios 324 | url: "https://pub.dartlang.org" 325 | source: hosted 326 | version: "2.0.8" 327 | shared_preferences_linux: 328 | dependency: transitive 329 | description: 330 | name: shared_preferences_linux 331 | url: "https://pub.dartlang.org" 332 | source: hosted 333 | version: "2.0.3" 334 | shared_preferences_macos: 335 | dependency: transitive 336 | description: 337 | name: shared_preferences_macos 338 | url: "https://pub.dartlang.org" 339 | source: hosted 340 | version: "2.0.2" 341 | shared_preferences_platform_interface: 342 | dependency: transitive 343 | description: 344 | name: shared_preferences_platform_interface 345 | url: "https://pub.dartlang.org" 346 | source: hosted 347 | version: "2.0.0" 348 | shared_preferences_web: 349 | dependency: transitive 350 | description: 351 | name: shared_preferences_web 352 | url: "https://pub.dartlang.org" 353 | source: hosted 354 | version: "2.0.2" 355 | shared_preferences_windows: 356 | dependency: transitive 357 | description: 358 | name: shared_preferences_windows 359 | url: "https://pub.dartlang.org" 360 | source: hosted 361 | version: "2.0.3" 362 | sky_engine: 363 | dependency: transitive 364 | description: flutter 365 | source: sdk 366 | version: "0.0.99" 367 | source_span: 368 | dependency: transitive 369 | description: 370 | name: source_span 371 | url: "https://pub.dartlang.org" 372 | source: hosted 373 | version: "1.8.1" 374 | stack_trace: 375 | dependency: transitive 376 | description: 377 | name: stack_trace 378 | url: "https://pub.dartlang.org" 379 | source: hosted 380 | version: "1.10.0" 381 | stream_channel: 382 | dependency: transitive 383 | description: 384 | name: stream_channel 385 | url: "https://pub.dartlang.org" 386 | source: hosted 387 | version: "2.1.0" 388 | string_scanner: 389 | dependency: transitive 390 | description: 391 | name: string_scanner 392 | url: "https://pub.dartlang.org" 393 | source: hosted 394 | version: "1.1.0" 395 | term_glyph: 396 | dependency: transitive 397 | description: 398 | name: term_glyph 399 | url: "https://pub.dartlang.org" 400 | source: hosted 401 | version: "1.2.0" 402 | test_api: 403 | dependency: transitive 404 | description: 405 | name: test_api 406 | url: "https://pub.dartlang.org" 407 | source: hosted 408 | version: "0.4.3" 409 | typed_data: 410 | dependency: transitive 411 | description: 412 | name: typed_data 413 | url: "https://pub.dartlang.org" 414 | source: hosted 415 | version: "1.3.0" 416 | vector_math: 417 | dependency: transitive 418 | description: 419 | name: vector_math 420 | url: "https://pub.dartlang.org" 421 | source: hosted 422 | version: "2.1.1" 423 | win32: 424 | dependency: transitive 425 | description: 426 | name: win32 427 | url: "https://pub.dartlang.org" 428 | source: hosted 429 | version: "2.3.1" 430 | xdg_directories: 431 | dependency: transitive 432 | description: 433 | name: xdg_directories 434 | url: "https://pub.dartlang.org" 435 | source: hosted 436 | version: "0.2.0" 437 | sdks: 438 | dart: ">=2.14.0 <3.0.0" 439 | flutter: ">=2.5.0" 440 | -------------------------------------------------------------------------------- /lib/views/registeration_view.dart: -------------------------------------------------------------------------------- 1 | import 'package:cloud_firestore/cloud_firestore.dart'; 2 | import 'package:firebase_auth/firebase_auth.dart'; 3 | import 'package:flutter/material.dart'; 4 | import 'package:get/get.dart'; 5 | import 'package:todo_app/views/login_view.dart'; 6 | import 'package:todo_app/widget/preference_helper.dart'; 7 | 8 | class RegisterationView extends StatefulWidget { 9 | const RegisterationView({Key? key}) : super(key: key); 10 | 11 | @override 12 | _RegisterationViewState createState() => _RegisterationViewState(); 13 | } 14 | 15 | class _RegisterationViewState extends State { 16 | final TextEditingController emailController = TextEditingController(); 17 | final TextEditingController passwordController = TextEditingController(); 18 | final TextEditingController confirmController = TextEditingController(); 19 | final TextEditingController userNameController = TextEditingController(); 20 | //instatiate shared prefs 21 | 22 | final PreferenceManager prefsManager = PreferenceManager(); 23 | 24 | //formkey 25 | final _formKey = GlobalKey(); 26 | 27 | //initialize firebase 28 | final FirebaseAuth _auth = FirebaseAuth.instance; 29 | final FirebaseFirestore _firestore = FirebaseFirestore.instance; 30 | 31 | @override 32 | Widget build(BuildContext context) { 33 | return Scaffold( 34 | body: Center( 35 | child: Container( 36 | height: MediaQuery.of(context).size.height * 0.95, 37 | width: MediaQuery.of(context).size.width * 0.8, 38 | child: Card( 39 | child: Padding( 40 | padding: const EdgeInsets.all(20), 41 | child: Form( 42 | key: _formKey, 43 | child: Column( 44 | mainAxisAlignment: MainAxisAlignment.center, 45 | children: [ 46 | Text( 47 | 'Enter Your Details To Register An Account', 48 | style: Theme.of(context).textTheme.headline1!.copyWith( 49 | fontSize: 20, 50 | letterSpacing: 1.3, 51 | fontWeight: FontWeight.bold, 52 | color: Get.isDarkMode ? Colors.white : Colors.black), 53 | ), 54 | const SizedBox( 55 | height: 15, 56 | ), 57 | const Divider(), 58 | 59 | const SizedBox( 60 | height: 40, 61 | ), 62 | //TODO: Add text fields for email and password 63 | TextFormField( 64 | style: Theme.of(context).textTheme.bodyText2!.copyWith( 65 | color: Get.isDarkMode ? Colors.white : Colors.white, 66 | ), 67 | validator: (value) { 68 | if (value!.isEmpty || value.length < 4) { 69 | return 'Please enter a valid name'; 70 | } 71 | return null; 72 | }, 73 | controller: userNameController, 74 | decoration: InputDecoration( 75 | labelText: 'Name', 76 | labelStyle: TextStyle( 77 | color: Get.isDarkMode ? Colors.white : Colors.white, 78 | ), 79 | hintText: 'Name', 80 | hintStyle: TextStyle( 81 | color: Get.isDarkMode ? Colors.white : Colors.white, 82 | ), 83 | border: OutlineInputBorder( 84 | borderSide: const BorderSide( 85 | color: Colors.white, 86 | ), 87 | borderRadius: BorderRadius.circular(8)), 88 | ), 89 | ), 90 | const SizedBox(height: 30), 91 | TextFormField( 92 | style: Theme.of(context).textTheme.bodyText2!.copyWith( 93 | color: Get.isDarkMode ? Colors.white : Colors.white, 94 | ), 95 | validator: (value) { 96 | if (value!.isEmpty) { 97 | return 'Please A Valid Email'; 98 | } 99 | return null; 100 | }, 101 | controller: emailController, 102 | decoration: InputDecoration( 103 | labelText: 'Email', 104 | labelStyle: TextStyle( 105 | color: Get.isDarkMode ? Colors.white : Colors.white, 106 | ), 107 | hintText: 'Email', 108 | hintStyle: TextStyle( 109 | color: Get.isDarkMode ? Colors.white : Colors.white, 110 | ), 111 | border: OutlineInputBorder( 112 | borderSide: const BorderSide( 113 | color: Colors.white, 114 | ), 115 | borderRadius: BorderRadius.circular(8)), 116 | ), 117 | ), 118 | const SizedBox(height: 30), 119 | 120 | ///second text field ===Password 121 | TextFormField( 122 | style: Theme.of(context).textTheme.bodyText2!.copyWith( 123 | color: Get.isDarkMode ? Colors.white : Colors.white, 124 | ), 125 | validator: (value) { 126 | if (value!.isEmpty || value.length < 6) { 127 | return 'Please enter a valid password'; 128 | } 129 | return null; 130 | }, 131 | controller: passwordController, 132 | obscureText: true, 133 | decoration: InputDecoration( 134 | labelText: 'Password', 135 | labelStyle: TextStyle( 136 | color: Get.isDarkMode ? Colors.white : Colors.white, 137 | ), 138 | hintText: 'Password', 139 | hintStyle: TextStyle( 140 | color: Get.isDarkMode ? Colors.white : Colors.white, 141 | ), 142 | border: OutlineInputBorder( 143 | borderSide: const BorderSide( 144 | color: Colors.white, 145 | ), 146 | borderRadius: BorderRadius.circular(8)), 147 | ), 148 | ), 149 | // confirm password textfield 150 | const SizedBox(height: 30), 151 | TextFormField( 152 | style: Theme.of(context).textTheme.bodyText2!.copyWith( 153 | color: Get.isDarkMode ? Colors.white : Colors.white, 154 | ), 155 | validator: (value) { 156 | if (value!.isEmpty || value.length < 6) { 157 | return '''Passowrd lenght should be more than 6 characters'''; 158 | } else if (value != passwordController.text) { 159 | return "Password do not match"; 160 | } 161 | return null; 162 | }, 163 | controller: confirmController, 164 | obscureText: true, 165 | decoration: InputDecoration( 166 | labelText: 'Confirm Password', 167 | labelStyle: TextStyle( 168 | color: Get.isDarkMode ? Colors.white : Colors.white, 169 | ), 170 | hintText: 'Confirm Password', 171 | hintStyle: TextStyle( 172 | color: Get.isDarkMode ? Colors.white : Colors.white, 173 | ), 174 | border: OutlineInputBorder( 175 | borderSide: const BorderSide( 176 | color: Colors.white, 177 | ), 178 | borderRadius: BorderRadius.circular(8)), 179 | ), 180 | ), 181 | const SizedBox(height: 30), 182 | //form submit button 183 | MaterialButton( 184 | elevation: 3, 185 | height: 45, 186 | highlightElevation: 5, 187 | 188 | color: Get.isDarkMode 189 | ? ThemeData.dark().primaryColor 190 | : const Color.fromRGBO(24, 71, 115, 1), 191 | //onpressed 192 | onPressed: () async { 193 | if (_formKey.currentState!.validate()) { 194 | setState(() { 195 | emailController.text; 196 | passwordController.text; 197 | }); 198 | 199 | await _auth 200 | .createUserWithEmailAndPassword( 201 | email: emailController.text, 202 | password: passwordController.text) 203 | //if nothing went wrong then do this 204 | .then((value) { 205 | prefsManager.setUserName(userNameController.text); 206 | print("Username : ${prefsManager.getUsername()}"); 207 | 208 | ///push userdetails to cloud firestore 209 | /// 210 | _firestore 211 | .collection('users') 212 | .doc(value.user!.uid) 213 | .set({ 214 | 'name': userNameController.text, 215 | 'email': emailController.text, 216 | }); 217 | Get.snackbar("Account created successfully", 218 | 'You can now login to your account', 219 | backgroundColor: Colors.green, 220 | colorText: Colors.white, 221 | snackPosition: SnackPosition.BOTTOM, 222 | duration: const Duration(seconds: 5)); 223 | 224 | //navigate to todo view 225 | 226 | Navigator.of(context).pushAndRemoveUntil( 227 | MaterialPageRoute( 228 | builder: (context) => const LoginView()), 229 | (route) => false); 230 | //if there's an error then do this 231 | }).catchError((err) { 232 | Get.snackbar( 233 | 'Error signing in', 234 | err.message, 235 | backgroundColor: Colors.red, 236 | colorText: Colors.white, 237 | snackPosition: SnackPosition.BOTTOM, 238 | ); 239 | }); 240 | } 241 | }, 242 | 243 | ///end of onPressed 244 | /// 245 | child: Text( 246 | "Register An Account", 247 | style: TextStyle( 248 | color: Get.isDarkMode ? Colors.white : Colors.white, 249 | ), 250 | ), 251 | ), 252 | //end of material button 253 | const SizedBox( 254 | height: 30, 255 | ), 256 | //TODO: sign up here or register here 257 | 258 | const SizedBox( 259 | height: 20, 260 | ), 261 | //registration page 262 | //// 263 | InkWell( 264 | onTap: () { 265 | Navigator.of(context).pushAndRemoveUntil( 266 | MaterialPageRoute( 267 | builder: (context) => const LoginView()), 268 | (route) => false); 269 | }, 270 | child: Text( 271 | "Already having an account? Login here", 272 | style: TextStyle( 273 | decoration: TextDecoration.underline, 274 | color: Get.isDarkMode 275 | ? Colors.white 276 | : const Color.fromRGBO(24, 71, 115, 1), 277 | ), 278 | ), 279 | ), 280 | ], 281 | ), 282 | ), 283 | ), 284 | ), 285 | ), 286 | ), 287 | ); 288 | } 289 | } 290 | -------------------------------------------------------------------------------- /lib/views/todo_view.dart: -------------------------------------------------------------------------------- 1 | import 'package:cloud_firestore/cloud_firestore.dart'; 2 | import 'package:firebase_auth/firebase_auth.dart'; 3 | import 'package:flutter/material.dart'; 4 | import 'package:image_picker/image_picker.dart'; 5 | import 'package:intl/intl.dart'; 6 | import 'package:get/get.dart'; 7 | import 'package:todo_app/model/database.dart'; 8 | import 'package:todo_app/model/user_model.dart'; 9 | import 'package:todo_app/model/userdb.dart'; 10 | import 'package:todo_app/views/about_view.dart'; 11 | 12 | import 'package:todo_app/views/login_view.dart'; 13 | import 'package:todo_app/views/profile_view.dart'; 14 | import 'package:todo_app/views/settings_view.dart'; 15 | import 'package:todo_app/widget/bottomsheetview.dart'; 16 | import 'package:todo_app/widget/image_cropper.dart'; 17 | import 'package:todo_app/widget/todo_widget.dart'; 18 | import 'package:todo_app/widget/widget_manager.dart'; 19 | 20 | class TodoView extends StatefulWidget { 21 | const TodoView({Key? key}) : super(key: key); 22 | 23 | @override 24 | TodoViewState createState() => TodoViewState(); 25 | } 26 | 27 | class TodoViewState extends State { 28 | TextEditingController titleController = TextEditingController(); 29 | TextEditingController descriptionController = TextEditingController(); 30 | TextEditingController dateController = TextEditingController(); 31 | TextEditingController timeController = TextEditingController(); 32 | 33 | final TodoWidgetManager todoManager = TodoWidgetManager(); 34 | final TodoDatabase todoDatabase = TodoDatabase(); 35 | //firebase auth instance 36 | final FirebaseAuth _auth = FirebaseAuth.instance; 37 | final FirebaseFirestore _firestore = FirebaseFirestore.instance; 38 | final User? _user = FirebaseAuth.instance.currentUser; 39 | String? userName; 40 | bool isDarkMode = false; 41 | final WidgetManager widgetManager = WidgetManager(); 42 | bool addTask = false; 43 | final _formKey = GlobalKey(); 44 | 45 | final UserDBManager userDBManager = UserDBManager(); 46 | final UserModel userModel = UserModel(); 47 | 48 | @override 49 | void initState() { 50 | super.initState(); 51 | FirebaseFirestore.instance 52 | .collection('users') 53 | .get() 54 | .then((QuerySnapshot querySnapshot) { 55 | querySnapshot.docs.forEach((doc) { 56 | if (doc['email'] == _user?.email) { 57 | setState(() { 58 | userName = doc['name']; 59 | }); 60 | } 61 | }); 62 | }); 63 | } 64 | 65 | Widget build(BuildContext context) { 66 | return Scaffold( 67 | appBar: AppBar( 68 | elevation: 2, 69 | leading: const Padding( 70 | padding: EdgeInsets.only(left: 10), 71 | child: CircleAvatar( 72 | backgroundImage: AssetImage( 73 | 'assets/images/profile.jpg', 74 | ), 75 | ), 76 | ), 77 | title: Text( 78 | 'My Tasks', 79 | style: Theme.of(context).textTheme.headline1!.copyWith( 80 | fontWeight: FontWeight.bold, 81 | fontSize: 20, 82 | color: Get.isDarkMode 83 | ? Colors.white 84 | : const Color.fromRGBO(84, 110, 149, 1)), 85 | ), 86 | actions: [ 87 | IconButton( 88 | onPressed: () {}, 89 | icon: const Icon(Icons.segment_outlined), 90 | ), 91 | IconButton( 92 | onPressed: () {}, 93 | icon: const Icon(Icons.search), 94 | ), 95 | ], 96 | ), 97 | drawer: Drawer( 98 | backgroundColor: 99 | Get.isDarkMode ? ThemeData.dark().primaryColor : Colors.teal, 100 | child: ListView( 101 | padding: const EdgeInsets.only(top: 20), 102 | children: [ 103 | //Drawerheader 104 | DrawerHeader( 105 | decoration: BoxDecoration( 106 | color: Get.isDarkMode ? Colors.transparent : Colors.transparent, 107 | ), 108 | child: Padding( 109 | padding: const EdgeInsets.only(top: 15), 110 | child: ListTile( 111 | leading: const CircleAvatar( 112 | //default profile image 113 | //TODO: change to user profile image when available from firestore 114 | backgroundImage: AssetImage('assets/images/profile.jpg'), 115 | ), 116 | title: Text("Hello $userName"), 117 | subtitle: Text("${_user!.email}"), 118 | trailing: IconButton( 119 | onPressed: () { 120 | //configure dark mode 121 | Get.isDarkMode 122 | ? Get.changeThemeMode(ThemeMode.light) 123 | : Get.changeThemeMode(ThemeMode.dark); 124 | setState(() { 125 | isDarkMode = true; 126 | }); 127 | }, 128 | icon: Get.isDarkMode 129 | ? const Icon(Icons.dark_mode) 130 | : const Icon(Icons.light_mode), 131 | ), 132 | onTap: () { 133 | Get.to(const ProfileView()); 134 | }, 135 | ), 136 | ), 137 | ), 138 | 139 | //end header 140 | ListTile( 141 | leading: const Icon(Icons.home), 142 | title: const Text('Home'), 143 | onTap: () { 144 | Get.to(TodoView()); 145 | }, 146 | ), 147 | ListTile( 148 | leading: const Icon(Icons.settings), 149 | title: const Text('Settings'), 150 | onTap: () { 151 | Get.to(SettingsView()); 152 | }, 153 | ), 154 | ListTile( 155 | leading: const Icon(Icons.info), 156 | title: const Text('About'), 157 | onTap: () { 158 | Get.to(AboutView()); 159 | }, 160 | ), 161 | //exit 162 | ListTile( 163 | leading: const Icon(Icons.logout_rounded), 164 | title: const Text('Exit app'), 165 | onTap: () { 166 | //TODO: logout and exit 167 | //check to see if user is signed in 168 | if (_auth.currentUser != null) { 169 | _auth.signOut(); 170 | Get.to(LoginView()); 171 | } 172 | }, 173 | ), 174 | ], 175 | ), 176 | ), 177 | body: Stack( 178 | children: [ 179 | TodoWidgetManager().todoWidget(context), 180 | const SizedBox( 181 | height: 50, 182 | ), 183 | //TODO: add a todo list 184 | Positioned( 185 | height: 50, 186 | right: 50, 187 | bottom: 110, 188 | child: InkWell( 189 | onTap: () { 190 | setState(() { 191 | addTask = true; 192 | //clear all text fields 193 | titleController.text = ""; 194 | descriptionController.text = ""; 195 | dateController.text = ""; 196 | timeController.text = ""; 197 | }); 198 | }, 199 | child: Container( 200 | width: 50, 201 | height: 50, 202 | decoration: BoxDecoration( 203 | color: Theme.of(context).primaryColorDark.withOpacity(0.6), 204 | borderRadius: const BorderRadius.all(Radius.circular(50)), 205 | ), 206 | child: const Center( 207 | child: Icon( 208 | Icons.add_outlined, 209 | size: 30, 210 | ), 211 | ), 212 | ), 213 | ), 214 | ), 215 | 216 | //TODO:Get number of completed tasks 217 | Positioned( 218 | bottom: 0, 219 | left: 0, 220 | right: 0, 221 | child: BottomSheetView().bottomSheetView()), 222 | //get todo 223 | Positioned( 224 | child: addTask 225 | ? createForm(context, titleController, descriptionController, 226 | dateController, timeController) 227 | : Container(), 228 | bottom: 0, 229 | left: 0, 230 | right: 0, 231 | height: MediaQuery.of(context).size.height * 0.6, 232 | ), 233 | ], 234 | ), 235 | ); 236 | } 237 | 238 | Widget createForm( 239 | BuildContext context, 240 | TextEditingController titleController, 241 | TextEditingController descriptionController, 242 | TextEditingController dateController, 243 | TextEditingController timeController, 244 | ) { 245 | return Container( 246 | height: MediaQuery.of(context).size.height * 0.4, 247 | width: MediaQuery.of(context).size.width, 248 | decoration: BoxDecoration( 249 | color: Get.isDarkMode 250 | ? ThemeData.dark().backgroundColor 251 | : Colors.black.withOpacity(0.9), 252 | borderRadius: const BorderRadius.only( 253 | topLeft: Radius.circular(30), 254 | topRight: Radius.circular(30), 255 | ), 256 | ), 257 | child: Form( 258 | key: _formKey, 259 | child: Padding( 260 | padding: const EdgeInsets.all(20.0), 261 | child: Column( 262 | mainAxisAlignment: MainAxisAlignment.spaceEvenly, 263 | children: [ 264 | Row( 265 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 266 | children: [ 267 | Padding( 268 | padding: EdgeInsets.only(left: 30), 269 | child: TextButton.icon( 270 | //when user press the done button 271 | onPressed: () { 272 | if (_formKey.currentState!.validate()) { 273 | setState(() { 274 | addTask = false; 275 | titleController.text; 276 | descriptionController.text; 277 | dateController.text; 278 | timeController.text; 279 | }); 280 | //if no error 281 | todoDatabase 282 | .addData( 283 | titleController.text, 284 | descriptionController.text, 285 | dateController.text, 286 | timeController.text) 287 | .then((value) { 288 | //if is successfull 289 | //display a success message 290 | Get.snackbar('Success', 'Task added successfully', 291 | snackPosition: SnackPosition.BOTTOM, 292 | backgroundColor: Colors.green, 293 | colorText: Colors.white, 294 | duration: const Duration(seconds: 5), 295 | borderRadius: 10, 296 | margin: const EdgeInsets.all(20), 297 | snackStyle: SnackStyle.FLOATING); 298 | }).catchError((err) { 299 | //if theres an error 300 | //display a error message 301 | Get.snackbar( 302 | 'Error adding a todo', 'Task not added', 303 | snackPosition: SnackPosition.BOTTOM, 304 | backgroundColor: Colors.red, 305 | colorText: Colors.white, 306 | duration: const Duration(seconds: 5), 307 | borderRadius: 10, 308 | margin: const EdgeInsets.all(20), 309 | snackStyle: SnackStyle.FLOATING); 310 | }); 311 | } //end of validator 312 | }, 313 | label: Text( 314 | "Done", 315 | style: Theme.of(context).textTheme.bodyText2!.copyWith( 316 | color: 317 | Get.isDarkMode ? Colors.white : Colors.white, 318 | ), 319 | ), 320 | icon: Icon( 321 | Icons.done_all_outlined, 322 | color: Get.isDarkMode ? Colors.white : Colors.white, 323 | ), 324 | ), 325 | ), 326 | Padding( 327 | padding: EdgeInsets.only(right: 30), 328 | child: IconButton( 329 | onPressed: () async { 330 | titleController.clear(); 331 | descriptionController.clear(); 332 | dateController.clear(); 333 | timeController.clear(); 334 | setState(() {}); 335 | //TODO:Add task here to db 336 | 337 | addTask = false; 338 | }, 339 | icon: Icon( 340 | Icons.close, 341 | color: Get.isDarkMode ? Colors.white : Colors.white, 342 | ), 343 | ), 344 | ), 345 | ], 346 | ), 347 | TextFormField( 348 | style: Theme.of(context).textTheme.bodyText2!.copyWith( 349 | color: Get.isDarkMode ? Colors.white : Colors.white, 350 | ), 351 | validator: (value) { 352 | if (value!.isEmpty) { 353 | return 'Please enter a title'; 354 | } 355 | return null; 356 | }, 357 | controller: titleController, 358 | decoration: InputDecoration( 359 | labelText: 'Title', 360 | labelStyle: TextStyle( 361 | color: Get.isDarkMode ? Colors.white : Colors.white, 362 | ), 363 | hintText: 'Title', 364 | hintStyle: TextStyle( 365 | color: Get.isDarkMode ? Colors.white : Colors.white, 366 | ), 367 | border: OutlineInputBorder( 368 | borderSide: const BorderSide( 369 | color: Colors.white, 370 | ), 371 | borderRadius: BorderRadius.circular(8)), 372 | ), 373 | ), 374 | 375 | //description text form field 376 | TextFormField( 377 | style: Theme.of(context).textTheme.bodyText2!.copyWith( 378 | color: Get.isDarkMode ? Colors.white : Colors.white, 379 | ), 380 | controller: descriptionController, 381 | decoration: InputDecoration( 382 | labelText: 'Description', 383 | labelStyle: TextStyle( 384 | color: Get.isDarkMode ? Colors.white : Colors.white, 385 | ), 386 | hintText: 'Description', 387 | hintStyle: TextStyle( 388 | color: Get.isDarkMode ? Colors.white : Colors.white, 389 | ), 390 | border: OutlineInputBorder( 391 | borderSide: const BorderSide( 392 | color: Colors.white, 393 | ), 394 | borderRadius: BorderRadius.circular(8)), 395 | ), 396 | ), 397 | 398 | ///date text form field 399 | TextFormField( 400 | onTap: () { 401 | showDatePicker( 402 | context: context, 403 | initialDate: DateTime.now(), 404 | firstDate: DateTime.now(), 405 | lastDate: DateTime.now(), 406 | helpText: 'Select Date', 407 | ).then((value) { 408 | var dateFormat = 409 | DateFormat('dd-MM-yyyy').format(value!).toString(); 410 | setState(() { 411 | dateController.text = dateFormat; 412 | }); 413 | }).catchError( 414 | (onError) => print("Select a valid date ${onError}")); 415 | }, 416 | style: Theme.of(context).textTheme.bodyText2!.copyWith( 417 | color: Get.isDarkMode ? Colors.white : Colors.white, 418 | ), 419 | validator: (value) { 420 | if (value!.isEmpty) { 421 | return 'Please enter a date'; 422 | } 423 | return null; 424 | }, 425 | controller: dateController, 426 | keyboardType: TextInputType.datetime, 427 | decoration: InputDecoration( 428 | labelText: 'Enter Date', 429 | labelStyle: TextStyle( 430 | color: Get.isDarkMode ? Colors.white : Colors.white, 431 | ), 432 | hintText: 'MM-DD-YYYY', 433 | hintStyle: TextStyle( 434 | color: Get.isDarkMode ? Colors.white : Colors.white, 435 | ), 436 | border: OutlineInputBorder( 437 | borderRadius: BorderRadius.circular(8)), 438 | ), 439 | ), 440 | //time textform field 441 | TextFormField( 442 | onTap: () { 443 | showTimePicker(context: context, initialTime: TimeOfDay.now()) 444 | .then((value) { 445 | var timeFormat = value!.format(context).toString(); 446 | print(timeFormat); 447 | setState(() { 448 | timeController.text = timeFormat; 449 | }); 450 | }).catchError((onError) { 451 | print("Select a valid time ${onError}"); 452 | }); 453 | }, 454 | style: Theme.of(context).textTheme.bodyText2!.copyWith( 455 | color: Get.isDarkMode ? Colors.white : Colors.white, 456 | ), 457 | validator: (value) { 458 | if (value!.isEmpty) { 459 | return 'Please enter a time'; 460 | } 461 | return null; 462 | }, 463 | controller: timeController, 464 | keyboardType: TextInputType.datetime, 465 | decoration: InputDecoration( 466 | labelText: 'Enter Time', 467 | labelStyle: TextStyle( 468 | color: Get.isDarkMode ? Colors.white : Colors.white, 469 | ), 470 | hintText: '00:00', 471 | hintStyle: TextStyle( 472 | color: Get.isDarkMode ? Colors.white : Colors.white, 473 | ), 474 | border: OutlineInputBorder( 475 | borderRadius: BorderRadius.circular(8)), 476 | ), 477 | ), 478 | ], 479 | ), 480 | ), 481 | ), 482 | ); 483 | } 484 | } 485 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | --------------------------------------------------------------------------------