├── .gitignore ├── Backend ├── account │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── admin.cpython-37.pyc │ │ ├── apps.cpython-37.pyc │ │ ├── models.cpython-37.pyc │ │ ├── serializers.cpython-37.pyc │ │ ├── urls.cpython-37.pyc │ │ └── views.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── db.sqlite3 ├── healthcare │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── settings.cpython-37.pyc │ │ ├── urls.cpython-37.pyc │ │ └── wsgi.cpython-37.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── help.txt ├── manage.py ├── records │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py └── requirements.txt ├── README.md ├── assets └── images │ ├── down.png │ ├── empty.png │ ├── fill2.png │ ├── no_internet.png │ ├── profile.png │ └── sheet.png ├── lib ├── api │ └── API.dart ├── common │ ├── CWidget.dart │ ├── Controller.dart │ ├── SnapConditions.dart │ └── ThemePage.dart ├── main.dart └── pages │ ├── Home.dart │ ├── profile │ ├── EditProfile.dart │ └── Profile.dart │ ├── records │ ├── basicdetails │ │ ├── GetBasicDetails.dart │ │ └── PatchDetails.dart │ └── dailyrecords │ │ ├── Chart.dart │ │ ├── DailyRecords.dart │ │ ├── GetRecord.dart │ │ └── PostDailyrecord.dart │ └── registration │ └── Signin.dart ├── pubspec.yaml ├── screenshots ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png └── 7.png └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/.gitignore -------------------------------------------------------------------------------- /Backend/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backend/account/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/account/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Backend/account/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/account/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /Backend/account/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/account/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /Backend/account/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/account/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Backend/account/__pycache__/serializers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/account/__pycache__/serializers.cpython-37.pyc -------------------------------------------------------------------------------- /Backend/account/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/account/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Backend/account/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/account/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /Backend/account/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/account/admin.py -------------------------------------------------------------------------------- /Backend/account/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/account/apps.py -------------------------------------------------------------------------------- /Backend/account/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backend/account/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/account/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Backend/account/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/account/models.py -------------------------------------------------------------------------------- /Backend/account/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/account/serializers.py -------------------------------------------------------------------------------- /Backend/account/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/account/tests.py -------------------------------------------------------------------------------- /Backend/account/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/account/urls.py -------------------------------------------------------------------------------- /Backend/account/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/account/views.py -------------------------------------------------------------------------------- /Backend/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/db.sqlite3 -------------------------------------------------------------------------------- /Backend/healthcare/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backend/healthcare/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/healthcare/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Backend/healthcare/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/healthcare/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /Backend/healthcare/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/healthcare/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /Backend/healthcare/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/healthcare/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /Backend/healthcare/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/healthcare/asgi.py -------------------------------------------------------------------------------- /Backend/healthcare/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/healthcare/settings.py -------------------------------------------------------------------------------- /Backend/healthcare/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/healthcare/urls.py -------------------------------------------------------------------------------- /Backend/healthcare/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/healthcare/wsgi.py -------------------------------------------------------------------------------- /Backend/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/help.txt -------------------------------------------------------------------------------- /Backend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/manage.py -------------------------------------------------------------------------------- /Backend/records/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/records/admin.py -------------------------------------------------------------------------------- /Backend/records/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/records/apps.py -------------------------------------------------------------------------------- /Backend/records/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/records/models.py -------------------------------------------------------------------------------- /Backend/records/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/records/serializers.py -------------------------------------------------------------------------------- /Backend/records/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/records/tests.py -------------------------------------------------------------------------------- /Backend/records/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/records/urls.py -------------------------------------------------------------------------------- /Backend/records/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/records/views.py -------------------------------------------------------------------------------- /Backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/Backend/requirements.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/assets/images/down.png -------------------------------------------------------------------------------- /assets/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/assets/images/empty.png -------------------------------------------------------------------------------- /assets/images/fill2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/assets/images/fill2.png -------------------------------------------------------------------------------- /assets/images/no_internet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/assets/images/no_internet.png -------------------------------------------------------------------------------- /assets/images/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/assets/images/profile.png -------------------------------------------------------------------------------- /assets/images/sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/assets/images/sheet.png -------------------------------------------------------------------------------- /lib/api/API.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/lib/api/API.dart -------------------------------------------------------------------------------- /lib/common/CWidget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/lib/common/CWidget.dart -------------------------------------------------------------------------------- /lib/common/Controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/lib/common/Controller.dart -------------------------------------------------------------------------------- /lib/common/SnapConditions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/lib/common/SnapConditions.dart -------------------------------------------------------------------------------- /lib/common/ThemePage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/lib/common/ThemePage.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/pages/Home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/lib/pages/Home.dart -------------------------------------------------------------------------------- /lib/pages/profile/EditProfile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/lib/pages/profile/EditProfile.dart -------------------------------------------------------------------------------- /lib/pages/profile/Profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/lib/pages/profile/Profile.dart -------------------------------------------------------------------------------- /lib/pages/records/basicdetails/GetBasicDetails.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/lib/pages/records/basicdetails/GetBasicDetails.dart -------------------------------------------------------------------------------- /lib/pages/records/basicdetails/PatchDetails.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/lib/pages/records/basicdetails/PatchDetails.dart -------------------------------------------------------------------------------- /lib/pages/records/dailyrecords/Chart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/lib/pages/records/dailyrecords/Chart.dart -------------------------------------------------------------------------------- /lib/pages/records/dailyrecords/DailyRecords.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/lib/pages/records/dailyrecords/DailyRecords.dart -------------------------------------------------------------------------------- /lib/pages/records/dailyrecords/GetRecord.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/lib/pages/records/dailyrecords/GetRecord.dart -------------------------------------------------------------------------------- /lib/pages/records/dailyrecords/PostDailyrecord.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/lib/pages/records/dailyrecords/PostDailyrecord.dart -------------------------------------------------------------------------------- /lib/pages/registration/Signin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/lib/pages/registration/Signin.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/screenshots/5.png -------------------------------------------------------------------------------- /screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/screenshots/6.png -------------------------------------------------------------------------------- /screenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/screenshots/7.png -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashgole/Django-Flutter-CRUD-operations-DoctorApp/HEAD/test/widget_test.dart --------------------------------------------------------------------------------