├── README.md ├── flutter_hive_tdo ├── .gitignore ├── .metadata ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── flutter_hive_tdo │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── 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 │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ ├── img │ │ └── 1.png │ └── lottie │ │ └── 1.json ├── lib │ ├── data │ │ └── hive_data_store.dart │ ├── main.dart │ ├── models │ │ ├── task.dart │ │ └── task.g.dart │ ├── utils │ │ ├── colors.dart │ │ ├── constanst.dart │ │ └── strings.dart │ └── view │ │ ├── home │ │ ├── home_view.dart │ │ └── widgets │ │ │ └── task_widget.dart │ │ └── tasks │ │ └── task_view.dart ├── pubspec.lock └── pubspec.yaml └── license /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/README.md -------------------------------------------------------------------------------- /flutter_hive_tdo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/.gitignore -------------------------------------------------------------------------------- /flutter_hive_tdo/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/.metadata -------------------------------------------------------------------------------- /flutter_hive_tdo/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/analysis_options.yaml -------------------------------------------------------------------------------- /flutter_hive_tdo/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/android/.gitignore -------------------------------------------------------------------------------- /flutter_hive_tdo/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/android/app/build.gradle -------------------------------------------------------------------------------- /flutter_hive_tdo/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /flutter_hive_tdo/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /flutter_hive_tdo/android/app/src/main/kotlin/com/example/flutter_hive_tdo/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/android/app/src/main/kotlin/com/example/flutter_hive_tdo/MainActivity.kt -------------------------------------------------------------------------------- /flutter_hive_tdo/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /flutter_hive_tdo/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /flutter_hive_tdo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter_hive_tdo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter_hive_tdo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter_hive_tdo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter_hive_tdo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter_hive_tdo/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /flutter_hive_tdo/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /flutter_hive_tdo/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /flutter_hive_tdo/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/android/build.gradle -------------------------------------------------------------------------------- /flutter_hive_tdo/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/android/gradle.properties -------------------------------------------------------------------------------- /flutter_hive_tdo/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /flutter_hive_tdo/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/android/settings.gradle -------------------------------------------------------------------------------- /flutter_hive_tdo/assets/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/assets/img/1.png -------------------------------------------------------------------------------- /flutter_hive_tdo/assets/lottie/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/assets/lottie/1.json -------------------------------------------------------------------------------- /flutter_hive_tdo/lib/data/hive_data_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/lib/data/hive_data_store.dart -------------------------------------------------------------------------------- /flutter_hive_tdo/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/lib/main.dart -------------------------------------------------------------------------------- /flutter_hive_tdo/lib/models/task.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/lib/models/task.dart -------------------------------------------------------------------------------- /flutter_hive_tdo/lib/models/task.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/lib/models/task.g.dart -------------------------------------------------------------------------------- /flutter_hive_tdo/lib/utils/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/lib/utils/colors.dart -------------------------------------------------------------------------------- /flutter_hive_tdo/lib/utils/constanst.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/lib/utils/constanst.dart -------------------------------------------------------------------------------- /flutter_hive_tdo/lib/utils/strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/lib/utils/strings.dart -------------------------------------------------------------------------------- /flutter_hive_tdo/lib/view/home/home_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/lib/view/home/home_view.dart -------------------------------------------------------------------------------- /flutter_hive_tdo/lib/view/home/widgets/task_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/lib/view/home/widgets/task_widget.dart -------------------------------------------------------------------------------- /flutter_hive_tdo/lib/view/tasks/task_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/lib/view/tasks/task_view.dart -------------------------------------------------------------------------------- /flutter_hive_tdo/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/pubspec.lock -------------------------------------------------------------------------------- /flutter_hive_tdo/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/flutter_hive_tdo/pubspec.yaml -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter-Hive-Todo-App/HEAD/license --------------------------------------------------------------------------------