gitextract_sxwtmaf3/ ├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── android/ │ ├── .gitignore │ ├── app/ │ │ ├── build.gradle │ │ └── src/ │ │ ├── debug/ │ │ │ └── AndroidManifest.xml │ │ ├── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin/ │ │ │ │ └── com/ │ │ │ │ └── mmas/ │ │ │ │ └── money_assistant_2608/ │ │ │ │ └── MainActivity.kt │ │ │ └── res/ │ │ │ ├── drawable/ │ │ │ │ └── launch_background.xml │ │ │ ├── drawable-v21/ │ │ │ │ └── launch_background.xml │ │ │ ├── values/ │ │ │ │ └── styles.xml │ │ │ └── values-night/ │ │ │ └── styles.xml │ │ └── profile/ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle/ │ │ └── wrapper/ │ │ └── gradle-wrapper.properties │ ├── gradle.properties │ └── settings.gradle ├── flutter ├── ios/ │ ├── .gitignore │ ├── Flutter/ │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Runner/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── LaunchBackground.imageset/ │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.imageset/ │ │ │ ├── Contents.json │ │ │ └── README.md │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── GoogleService-Info.plist │ │ ├── Info.plist │ │ ├── Runner-Bridging-Header.h │ │ └── Runner.entitlements │ ├── Runner.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ └── build/ │ └── Pods.build/ │ └── Release-iphonesimulator/ │ ├── DKImagePickerController-DKImagePickerController.build/ │ │ ├── dgph │ │ └── dgph~ │ ├── DKImagePickerController.build/ │ │ ├── dgph │ │ └── dgph~ │ ├── DKPhotoGallery-DKPhotoGallery.build/ │ │ ├── dgph │ │ └── dgph~ │ ├── DKPhotoGallery.build/ │ │ ├── dgph │ │ └── dgph~ │ ├── FMDB.build/ │ │ ├── dgph │ │ └── dgph~ │ ├── Flutter.build/ │ │ ├── dgph │ │ └── dgph~ │ ├── Pods-Runner.build/ │ │ ├── dgph │ │ └── dgph~ │ ├── SDWebImage.build/ │ │ ├── dgph │ │ └── dgph~ │ ├── SwiftyGif.build/ │ │ ├── dgph │ │ └── dgph~ │ ├── Toast.build/ │ │ └── dgph │ ├── file_picker.build/ │ │ ├── dgph │ │ └── dgph~ │ ├── fluttertoast.build/ │ │ └── dgph │ ├── in_app_review.build/ │ │ ├── dgph │ │ └── dgph~ │ ├── local_auth.build/ │ │ └── dgph │ ├── path_provider.build/ │ │ ├── dgph │ │ └── dgph~ │ ├── rate_my_app.build/ │ │ └── dgph │ ├── share_plus.build/ │ │ ├── dgph │ │ └── dgph~ │ ├── shared_preferences.build/ │ │ ├── dgph │ │ └── dgph~ │ ├── sqflite.build/ │ │ ├── dgph │ │ └── dgph~ │ └── url_launcher.build/ │ ├── dgph │ └── dgph~ ├── lib/ │ ├── main.dart │ └── project/ │ ├── app_pages/ │ │ ├── add_category.dart │ │ ├── analysis.dart │ │ ├── calendar.dart │ │ ├── currency.dart │ │ ├── edit.dart │ │ ├── edit_expense_category.dart │ │ ├── edit_income_category.dart │ │ ├── expense_category.dart │ │ ├── income_category.dart │ │ ├── input.dart │ │ ├── others.dart │ │ ├── parent_category.dart │ │ ├── report.dart │ │ ├── select_date_format.dart │ │ ├── select_icon.dart │ │ └── select_language.dart │ ├── auth_pages/ │ │ ├── loading_page.dart │ │ ├── sign_in.dart │ │ ├── sign_up.dart │ │ ├── user_account.dart │ │ ├── welcome_page.dart │ │ └── wrapper.dart │ ├── auth_services/ │ │ └── firebase_authentication.dart │ ├── classes/ │ │ ├── alert_dialog.dart │ │ ├── app_bar.dart │ │ ├── category_item.dart │ │ ├── chart_pie.dart │ │ ├── constants.dart │ │ ├── custom_toast.dart │ │ ├── dropdown_box.dart │ │ ├── icons.dart │ │ ├── input_model.dart │ │ ├── keyboard.dart │ │ ├── lockscreen.dart │ │ └── saveOrSaveAndDeleteButtons.dart │ ├── database_management/ │ │ ├── database.dart │ │ ├── shared_preferences_services.dart │ │ └── sqflite_services.dart │ ├── draft1.dart │ ├── home.dart │ ├── localization/ │ │ ├── app_localization.dart │ │ ├── lang/ │ │ │ ├── ar.json │ │ │ ├── de.json │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ ├── fr.json │ │ │ ├── hi.json │ │ │ ├── ja.json │ │ │ ├── ko.json │ │ │ ├── ne.json │ │ │ ├── pt.json │ │ │ ├── ru.json │ │ │ ├── tr.json │ │ │ ├── vi.json │ │ │ └── zh.json │ │ ├── language.dart │ │ └── methods.dart │ ├── provider.dart │ └── real_main.dart ├── pubspec.yaml └── test/ └── widget_test.dart