├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── logger │ │ │ │ └── app │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-hdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-hdpi │ │ │ ├── android12splash.png │ │ │ ├── branding.png │ │ │ └── splash.png │ │ │ ├── drawable-mdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-mdpi │ │ │ ├── android12splash.png │ │ │ ├── branding.png │ │ │ └── splash.png │ │ │ ├── drawable-night-hdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-night-hdpi │ │ │ ├── android12splash.png │ │ │ └── branding.png │ │ │ ├── drawable-night-mdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-night-mdpi │ │ │ ├── android12splash.png │ │ │ └── branding.png │ │ │ ├── drawable-night-v21 │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── drawable-night-xhdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-night-xhdpi │ │ │ ├── android12splash.png │ │ │ └── branding.png │ │ │ ├── drawable-night-xxhdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-night-xxhdpi │ │ │ ├── android12splash.png │ │ │ └── branding.png │ │ │ ├── drawable-night-xxxhdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-night-xxxhdpi │ │ │ ├── android12splash.png │ │ │ └── branding.png │ │ │ ├── drawable-night │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── drawable-v21 │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── drawable-xhdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-xhdpi │ │ │ ├── android12splash.png │ │ │ ├── branding.png │ │ │ └── splash.png │ │ │ ├── drawable-xxhdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── android12splash.png │ │ │ ├── branding.png │ │ │ └── splash.png │ │ │ ├── drawable-xxxhdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── android12splash.png │ │ │ ├── branding.png │ │ │ └── splash.png │ │ │ ├── drawable │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── values-night-v31 │ │ │ └── styles.xml │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ ├── values-v31 │ │ │ └── styles.xml │ │ │ ├── values │ │ │ └── styles.xml │ │ │ └── xml │ │ │ └── locales_config.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── background.png ├── background_android12.png ├── fonts │ └── SourceSansPro-Regular.ttf ├── images │ ├── branding │ │ ├── dark.png │ │ └── light.png │ └── on_boarding │ │ ├── dark │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── 4.png │ │ └── light │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── 4.png ├── logo.png └── logo_transparent.png ├── devtools_options.yaml ├── fastlane └── metadata │ └── android │ ├── de-DE │ ├── full_description.txt │ └── short_description.txt │ ├── en-US │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ ├── icon.png │ │ └── phoneScreenshots │ │ │ ├── 01.png │ │ │ ├── 02.png │ │ │ ├── 03.png │ │ │ ├── 04.png │ │ │ ├── 05.png │ │ │ └── 06.png │ └── short_description.txt │ ├── es-ES │ ├── full_description.txt │ └── short_description.txt │ ├── fi-FI │ ├── full_description.txt │ └── short_description.txt │ ├── fr-FR │ ├── full_description.txt │ └── short_description.txt │ ├── hi-IN │ ├── full_description.txt │ └── short_description.txt │ ├── ja-JP │ ├── full_description.txt │ └── short_description.txt │ ├── ko-KR │ ├── full_description.txt │ └── short_description.txt │ ├── nl-NL │ ├── full_description.txt │ └── short_description.txt │ ├── pl-PL │ ├── full_description.txt │ └── short_description.txt │ ├── pt-PT │ ├── full_description.txt │ └── short_description.txt │ ├── ro-RO │ ├── full_description.txt │ └── short_description.txt │ ├── ru-RU │ ├── full_description.txt │ └── short_description.txt │ ├── sv-SE │ ├── full_description.txt │ └── short_description.txt │ └── zh-CN │ ├── full_description.txt │ └── short_description.txt ├── l10n.yaml ├── lib ├── components │ ├── analytics │ │ ├── call_duration.dart │ │ ├── call_freq.dart │ │ ├── call_stats.dart │ │ ├── inc_out_tile.dart │ │ ├── indicator.dart │ │ └── top_contacts_tile.dart │ ├── common │ │ ├── app_error.dart │ │ ├── custom_circular_progress.dart │ │ ├── custom_linear_progress_loader.dart │ │ ├── date_picker.dart │ │ ├── divider.dart │ │ ├── grid_skeleton.dart │ │ ├── lined_text.dart │ │ ├── loader.dart │ │ ├── log_entry.dart │ │ ├── sized_text.dart │ │ ├── skeleton.dart │ │ └── toggle_button.dart │ ├── logs │ │ ├── contact_log.dart │ │ ├── contact_log_freq.dart │ │ ├── grouped_logs_builder.dart │ │ ├── grouped_slidable.dart │ │ ├── log_details.dart │ │ ├── logs_page.dart │ │ └── quick_summary.dart │ └── tracklist │ │ ├── tracklist_placeholder.dart │ │ └── tracklist_stats_tile.dart ├── core │ ├── app_core.dart │ ├── app_interface.dart │ ├── log_filters.dart │ └── manager.dart ├── data │ ├── datasource │ │ ├── datasource.dart │ │ ├── filter_preset_datasource.dart │ │ ├── filter_preset_provider.dart │ │ ├── tracklist_datasource.dart │ │ └── tracklist_provider.dart │ ├── models │ │ ├── filter_preset.dart │ │ └── tracklist_item.dart │ └── repostiory │ │ ├── preset_repository_provider.dart │ │ ├── presets_repository.dart │ │ ├── tracklist_repository.dart │ │ └── tracklist_repository_provider.dart ├── l10n │ ├── app_de.arb │ ├── app_en.arb │ ├── app_es.arb │ ├── app_fi.arb │ ├── app_fr.arb │ ├── app_hi.arb │ ├── app_ja.arb │ ├── app_ko.arb │ ├── app_nl.arb │ ├── app_pl.arb │ ├── app_pt.arb │ ├── app_ro.arb │ ├── app_ru.arb │ ├── app_sv.arb │ ├── app_tr.arb │ └── app_zh.arb ├── main.dart ├── providers │ ├── call_logs_analyzer.dart │ ├── call_logs_provider.dart │ ├── current_call_logs_provider.dart │ ├── filter_presets_provider.dart │ ├── linear_loader_provider.dart │ ├── loader_provider.dart │ ├── log_filters_provider.dart │ ├── shared_preferences_providers │ │ ├── call_log_count_provider.dart │ │ ├── call_rounding_provider.dart │ │ ├── download_confirmation_provider.dart │ │ ├── duration_filtering_provider.dart │ │ ├── export_file_name_format_provider.dart │ │ ├── export_type_provider.dart │ │ ├── grouped_calls_type_provider.dart │ │ ├── logs_sharing_provider.dart │ │ ├── onboarding_provider.dart │ │ ├── phone_account_filtering_provider.dart │ │ ├── total_call_duration_provider.dart │ │ ├── use_grouping_with_filters.dart │ │ └── uses_filter_presets_provider.dart │ ├── shared_utility_provider.dart │ ├── tracklist_provider.dart │ └── whatsapp_availablity_provider.dart ├── screens │ ├── about │ │ └── screen.dart │ ├── analytics │ │ └── screen.dart │ ├── home │ │ └── screen.dart │ ├── onboarding │ │ └── screen.dart │ ├── settings │ │ ├── filter_presets_activity.dart │ │ ├── fragments │ │ │ ├── datetime_table.dart │ │ │ ├── export_filename_dialog.dart │ │ │ ├── export_format_dialog.dart │ │ │ ├── export_info │ │ │ │ ├── csv_fields.dart │ │ │ │ ├── field_builder.dart │ │ │ │ └── json_fields.dart │ │ │ └── group_calls_dialog.dart │ │ ├── preset_editor.dart │ │ └── screen.dart │ └── tracklist │ │ ├── fragments │ │ ├── add_new_number_to_track_list_dialog.dart │ │ ├── tracklist_item_ui.dart │ │ ├── tracklist_item_ui_builder.dart │ │ └── weekday_barchart.dart │ │ └── screen.dart ├── themeing │ └── theme.dart └── utils │ ├── analytics_fns.dart │ ├── app_information.dart │ ├── call_display_helper.dart │ ├── call_log_grouper.dart │ ├── constants.dart │ ├── contact_handler.dart │ ├── csv_to_map.dart │ ├── device_info.dart │ ├── exported_filename_formatter.dart │ ├── file_types.dart │ ├── filter_date_ranges.dart │ ├── filters.dart │ ├── format_helpers.dart │ ├── generate_files.dart │ ├── grouper.dart │ ├── locale.dart │ ├── native_methods.dart │ ├── phone_formatter.dart │ ├── snackbar.dart │ ├── tracking_metrics.dart │ └── whatsapp_launcher.dart ├── pubspec.lock └── pubspec.yaml /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/logger/app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/kotlin/com/logger/app/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi-v31/android12branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-hdpi-v31/android12branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-hdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-hdpi/branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-hdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi-v31/android12branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-mdpi-v31/android12branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-mdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-mdpi/branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-mdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-hdpi-v31/android12branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-night-hdpi-v31/android12branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-hdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-night-hdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-hdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-night-hdpi/branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-mdpi-v31/android12branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-night-mdpi-v31/android12branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-mdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-night-mdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-mdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-night-mdpi/branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-v21/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-night-v21/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-night-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-xhdpi-v31/android12branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-night-xhdpi-v31/android12branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-xhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-night-xhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-xhdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-night-xhdpi/branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-xxhdpi-v31/android12branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-night-xxhdpi-v31/android12branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-xxhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-night-xxhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-xxhdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-night-xxhdpi/branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-xxxhdpi-v31/android12branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-night-xxxhdpi-v31/android12branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-xxxhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-night-xxxhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-xxxhdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-night-xxxhdpi/branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-night/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-night/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-v21/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi-v31/android12branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-xhdpi-v31/android12branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-xhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-xhdpi/branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-xhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi-v31/android12branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-xxhdpi-v31/android12branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-xxhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-xxhdpi/branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-xxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi-v31/android12branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-xxxhdpi-v31/android12branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-xxxhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-xxxhdpi/branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable-xxxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/values-night-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/values-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/locales_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/main/res/xml/locales_config.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/assets/background.png -------------------------------------------------------------------------------- /assets/background_android12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/assets/background_android12.png -------------------------------------------------------------------------------- /assets/fonts/SourceSansPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/assets/fonts/SourceSansPro-Regular.ttf -------------------------------------------------------------------------------- /assets/images/branding/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/assets/images/branding/dark.png -------------------------------------------------------------------------------- /assets/images/branding/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/assets/images/branding/light.png -------------------------------------------------------------------------------- /assets/images/on_boarding/dark/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/assets/images/on_boarding/dark/1.png -------------------------------------------------------------------------------- /assets/images/on_boarding/dark/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/assets/images/on_boarding/dark/2.png -------------------------------------------------------------------------------- /assets/images/on_boarding/dark/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/assets/images/on_boarding/dark/3.png -------------------------------------------------------------------------------- /assets/images/on_boarding/dark/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/assets/images/on_boarding/dark/4.png -------------------------------------------------------------------------------- /assets/images/on_boarding/light/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/assets/images/on_boarding/light/1.png -------------------------------------------------------------------------------- /assets/images/on_boarding/light/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/assets/images/on_boarding/light/2.png -------------------------------------------------------------------------------- /assets/images/on_boarding/light/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/assets/images/on_boarding/light/3.png -------------------------------------------------------------------------------- /assets/images/on_boarding/light/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/assets/images/on_boarding/light/4.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/logo_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/assets/logo_transparent.png -------------------------------------------------------------------------------- /devtools_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/devtools_options.yaml -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/de-DE/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/short_description.txt: -------------------------------------------------------------------------------- 1 | Verfolgen, analysieren und verwalten Sie Ihre Anrufe. -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/01.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/02.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/03.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/04.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/05.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/06.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Track, Analyze, and Manage Your Calls 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/es-ES/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/short_description.txt: -------------------------------------------------------------------------------- 1 | Rastrea, analiza y gestiona tus llamadas. -------------------------------------------------------------------------------- /fastlane/metadata/android/fi-FI/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/fi-FI/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fi-FI/short_description.txt: -------------------------------------------------------------------------------- 1 | Seuraa, analysoi ja hallitse puhelujasi. -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/fr-FR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/short_description.txt: -------------------------------------------------------------------------------- 1 | Suivez, analysez et gérez vos appels. -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/hi-IN/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/hi-IN/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/ja-JP/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/short_description.txt: -------------------------------------------------------------------------------- 1 | 通話を追跡、分析、管理します。 -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/ko-KR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/short_description.txt: -------------------------------------------------------------------------------- 1 | 통화를 추적하고 분석하며 관리하세요. -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/nl-NL/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/nl-NL/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/pl-PL/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/short_description.txt: -------------------------------------------------------------------------------- 1 | Śledź, analizuj i zarządzaj swoimi połączeniami. -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/pt-PT/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/short_description.txt: -------------------------------------------------------------------------------- 1 | Acompanhe, analise e gerencie suas chamadas. -------------------------------------------------------------------------------- /fastlane/metadata/android/ro-RO/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/ro-RO/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ro-RO/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/ro-RO/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/ru-RU/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/ru-RU/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sv-SE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/sv-SE/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sv-SE/short_description.txt: -------------------------------------------------------------------------------- 1 | Spåra, analysera och hantera dina samtal. -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/fastlane/metadata/android/zh-CN/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/short_description.txt: -------------------------------------------------------------------------------- 1 | 跟踪、分析并管理您的通话 -------------------------------------------------------------------------------- /l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/l10n.yaml -------------------------------------------------------------------------------- /lib/components/analytics/call_duration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/analytics/call_duration.dart -------------------------------------------------------------------------------- /lib/components/analytics/call_freq.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/analytics/call_freq.dart -------------------------------------------------------------------------------- /lib/components/analytics/call_stats.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/analytics/call_stats.dart -------------------------------------------------------------------------------- /lib/components/analytics/inc_out_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/analytics/inc_out_tile.dart -------------------------------------------------------------------------------- /lib/components/analytics/indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/analytics/indicator.dart -------------------------------------------------------------------------------- /lib/components/analytics/top_contacts_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/analytics/top_contacts_tile.dart -------------------------------------------------------------------------------- /lib/components/common/app_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/common/app_error.dart -------------------------------------------------------------------------------- /lib/components/common/custom_circular_progress.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/common/custom_circular_progress.dart -------------------------------------------------------------------------------- /lib/components/common/custom_linear_progress_loader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/common/custom_linear_progress_loader.dart -------------------------------------------------------------------------------- /lib/components/common/date_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/common/date_picker.dart -------------------------------------------------------------------------------- /lib/components/common/divider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/common/divider.dart -------------------------------------------------------------------------------- /lib/components/common/grid_skeleton.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/common/grid_skeleton.dart -------------------------------------------------------------------------------- /lib/components/common/lined_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/common/lined_text.dart -------------------------------------------------------------------------------- /lib/components/common/loader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/common/loader.dart -------------------------------------------------------------------------------- /lib/components/common/log_entry.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/common/log_entry.dart -------------------------------------------------------------------------------- /lib/components/common/sized_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/common/sized_text.dart -------------------------------------------------------------------------------- /lib/components/common/skeleton.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/common/skeleton.dart -------------------------------------------------------------------------------- /lib/components/common/toggle_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/common/toggle_button.dart -------------------------------------------------------------------------------- /lib/components/logs/contact_log.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/logs/contact_log.dart -------------------------------------------------------------------------------- /lib/components/logs/contact_log_freq.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/logs/contact_log_freq.dart -------------------------------------------------------------------------------- /lib/components/logs/grouped_logs_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/logs/grouped_logs_builder.dart -------------------------------------------------------------------------------- /lib/components/logs/grouped_slidable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/logs/grouped_slidable.dart -------------------------------------------------------------------------------- /lib/components/logs/log_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/logs/log_details.dart -------------------------------------------------------------------------------- /lib/components/logs/logs_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/logs/logs_page.dart -------------------------------------------------------------------------------- /lib/components/logs/quick_summary.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/logs/quick_summary.dart -------------------------------------------------------------------------------- /lib/components/tracklist/tracklist_placeholder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/tracklist/tracklist_placeholder.dart -------------------------------------------------------------------------------- /lib/components/tracklist/tracklist_stats_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/components/tracklist/tracklist_stats_tile.dart -------------------------------------------------------------------------------- /lib/core/app_core.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/core/app_core.dart -------------------------------------------------------------------------------- /lib/core/app_interface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/core/app_interface.dart -------------------------------------------------------------------------------- /lib/core/log_filters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/core/log_filters.dart -------------------------------------------------------------------------------- /lib/core/manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/core/manager.dart -------------------------------------------------------------------------------- /lib/data/datasource/datasource.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/data/datasource/datasource.dart -------------------------------------------------------------------------------- /lib/data/datasource/filter_preset_datasource.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/data/datasource/filter_preset_datasource.dart -------------------------------------------------------------------------------- /lib/data/datasource/filter_preset_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/data/datasource/filter_preset_provider.dart -------------------------------------------------------------------------------- /lib/data/datasource/tracklist_datasource.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/data/datasource/tracklist_datasource.dart -------------------------------------------------------------------------------- /lib/data/datasource/tracklist_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/data/datasource/tracklist_provider.dart -------------------------------------------------------------------------------- /lib/data/models/filter_preset.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/data/models/filter_preset.dart -------------------------------------------------------------------------------- /lib/data/models/tracklist_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/data/models/tracklist_item.dart -------------------------------------------------------------------------------- /lib/data/repostiory/preset_repository_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/data/repostiory/preset_repository_provider.dart -------------------------------------------------------------------------------- /lib/data/repostiory/presets_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/data/repostiory/presets_repository.dart -------------------------------------------------------------------------------- /lib/data/repostiory/tracklist_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/data/repostiory/tracklist_repository.dart -------------------------------------------------------------------------------- /lib/data/repostiory/tracklist_repository_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/data/repostiory/tracklist_repository_provider.dart -------------------------------------------------------------------------------- /lib/l10n/app_de.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/l10n/app_de.arb -------------------------------------------------------------------------------- /lib/l10n/app_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/l10n/app_en.arb -------------------------------------------------------------------------------- /lib/l10n/app_es.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/l10n/app_es.arb -------------------------------------------------------------------------------- /lib/l10n/app_fi.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/l10n/app_fi.arb -------------------------------------------------------------------------------- /lib/l10n/app_fr.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/l10n/app_fr.arb -------------------------------------------------------------------------------- /lib/l10n/app_hi.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/l10n/app_hi.arb -------------------------------------------------------------------------------- /lib/l10n/app_ja.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/l10n/app_ja.arb -------------------------------------------------------------------------------- /lib/l10n/app_ko.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/l10n/app_ko.arb -------------------------------------------------------------------------------- /lib/l10n/app_nl.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/l10n/app_nl.arb -------------------------------------------------------------------------------- /lib/l10n/app_pl.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/l10n/app_pl.arb -------------------------------------------------------------------------------- /lib/l10n/app_pt.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/l10n/app_pt.arb -------------------------------------------------------------------------------- /lib/l10n/app_ro.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/l10n/app_ro.arb -------------------------------------------------------------------------------- /lib/l10n/app_ru.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/l10n/app_ru.arb -------------------------------------------------------------------------------- /lib/l10n/app_sv.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/l10n/app_sv.arb -------------------------------------------------------------------------------- /lib/l10n/app_tr.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/l10n/app_tr.arb -------------------------------------------------------------------------------- /lib/l10n/app_zh.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/l10n/app_zh.arb -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/providers/call_logs_analyzer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/providers/call_logs_analyzer.dart -------------------------------------------------------------------------------- /lib/providers/call_logs_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/providers/call_logs_provider.dart -------------------------------------------------------------------------------- /lib/providers/current_call_logs_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/providers/current_call_logs_provider.dart -------------------------------------------------------------------------------- /lib/providers/filter_presets_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/providers/filter_presets_provider.dart -------------------------------------------------------------------------------- /lib/providers/linear_loader_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/providers/linear_loader_provider.dart -------------------------------------------------------------------------------- /lib/providers/loader_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/providers/loader_provider.dart -------------------------------------------------------------------------------- /lib/providers/log_filters_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/providers/log_filters_provider.dart -------------------------------------------------------------------------------- /lib/providers/shared_preferences_providers/call_log_count_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/providers/shared_preferences_providers/call_log_count_provider.dart -------------------------------------------------------------------------------- /lib/providers/shared_preferences_providers/call_rounding_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/providers/shared_preferences_providers/call_rounding_provider.dart -------------------------------------------------------------------------------- /lib/providers/shared_preferences_providers/download_confirmation_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/providers/shared_preferences_providers/download_confirmation_provider.dart -------------------------------------------------------------------------------- /lib/providers/shared_preferences_providers/duration_filtering_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/providers/shared_preferences_providers/duration_filtering_provider.dart -------------------------------------------------------------------------------- /lib/providers/shared_preferences_providers/export_file_name_format_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/providers/shared_preferences_providers/export_file_name_format_provider.dart -------------------------------------------------------------------------------- /lib/providers/shared_preferences_providers/export_type_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/providers/shared_preferences_providers/export_type_provider.dart -------------------------------------------------------------------------------- /lib/providers/shared_preferences_providers/grouped_calls_type_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/providers/shared_preferences_providers/grouped_calls_type_provider.dart -------------------------------------------------------------------------------- /lib/providers/shared_preferences_providers/logs_sharing_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/providers/shared_preferences_providers/logs_sharing_provider.dart -------------------------------------------------------------------------------- /lib/providers/shared_preferences_providers/onboarding_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/providers/shared_preferences_providers/onboarding_provider.dart -------------------------------------------------------------------------------- /lib/providers/shared_preferences_providers/phone_account_filtering_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/providers/shared_preferences_providers/phone_account_filtering_provider.dart -------------------------------------------------------------------------------- /lib/providers/shared_preferences_providers/total_call_duration_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/providers/shared_preferences_providers/total_call_duration_provider.dart -------------------------------------------------------------------------------- /lib/providers/shared_preferences_providers/use_grouping_with_filters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/providers/shared_preferences_providers/use_grouping_with_filters.dart -------------------------------------------------------------------------------- /lib/providers/shared_preferences_providers/uses_filter_presets_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/providers/shared_preferences_providers/uses_filter_presets_provider.dart -------------------------------------------------------------------------------- /lib/providers/shared_utility_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/providers/shared_utility_provider.dart -------------------------------------------------------------------------------- /lib/providers/tracklist_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/providers/tracklist_provider.dart -------------------------------------------------------------------------------- /lib/providers/whatsapp_availablity_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/providers/whatsapp_availablity_provider.dart -------------------------------------------------------------------------------- /lib/screens/about/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/screens/about/screen.dart -------------------------------------------------------------------------------- /lib/screens/analytics/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/screens/analytics/screen.dart -------------------------------------------------------------------------------- /lib/screens/home/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/screens/home/screen.dart -------------------------------------------------------------------------------- /lib/screens/onboarding/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/screens/onboarding/screen.dart -------------------------------------------------------------------------------- /lib/screens/settings/filter_presets_activity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/screens/settings/filter_presets_activity.dart -------------------------------------------------------------------------------- /lib/screens/settings/fragments/datetime_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/screens/settings/fragments/datetime_table.dart -------------------------------------------------------------------------------- /lib/screens/settings/fragments/export_filename_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/screens/settings/fragments/export_filename_dialog.dart -------------------------------------------------------------------------------- /lib/screens/settings/fragments/export_format_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/screens/settings/fragments/export_format_dialog.dart -------------------------------------------------------------------------------- /lib/screens/settings/fragments/export_info/csv_fields.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/screens/settings/fragments/export_info/csv_fields.dart -------------------------------------------------------------------------------- /lib/screens/settings/fragments/export_info/field_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/screens/settings/fragments/export_info/field_builder.dart -------------------------------------------------------------------------------- /lib/screens/settings/fragments/export_info/json_fields.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/screens/settings/fragments/export_info/json_fields.dart -------------------------------------------------------------------------------- /lib/screens/settings/fragments/group_calls_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/screens/settings/fragments/group_calls_dialog.dart -------------------------------------------------------------------------------- /lib/screens/settings/preset_editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/screens/settings/preset_editor.dart -------------------------------------------------------------------------------- /lib/screens/settings/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/screens/settings/screen.dart -------------------------------------------------------------------------------- /lib/screens/tracklist/fragments/add_new_number_to_track_list_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/screens/tracklist/fragments/add_new_number_to_track_list_dialog.dart -------------------------------------------------------------------------------- /lib/screens/tracklist/fragments/tracklist_item_ui.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/screens/tracklist/fragments/tracklist_item_ui.dart -------------------------------------------------------------------------------- /lib/screens/tracklist/fragments/tracklist_item_ui_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/screens/tracklist/fragments/tracklist_item_ui_builder.dart -------------------------------------------------------------------------------- /lib/screens/tracklist/fragments/weekday_barchart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/screens/tracklist/fragments/weekday_barchart.dart -------------------------------------------------------------------------------- /lib/screens/tracklist/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/screens/tracklist/screen.dart -------------------------------------------------------------------------------- /lib/themeing/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/themeing/theme.dart -------------------------------------------------------------------------------- /lib/utils/analytics_fns.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/utils/analytics_fns.dart -------------------------------------------------------------------------------- /lib/utils/app_information.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/utils/app_information.dart -------------------------------------------------------------------------------- /lib/utils/call_display_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/utils/call_display_helper.dart -------------------------------------------------------------------------------- /lib/utils/call_log_grouper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/utils/call_log_grouper.dart -------------------------------------------------------------------------------- /lib/utils/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/utils/constants.dart -------------------------------------------------------------------------------- /lib/utils/contact_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/utils/contact_handler.dart -------------------------------------------------------------------------------- /lib/utils/csv_to_map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/utils/csv_to_map.dart -------------------------------------------------------------------------------- /lib/utils/device_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/utils/device_info.dart -------------------------------------------------------------------------------- /lib/utils/exported_filename_formatter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/utils/exported_filename_formatter.dart -------------------------------------------------------------------------------- /lib/utils/file_types.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/utils/file_types.dart -------------------------------------------------------------------------------- /lib/utils/filter_date_ranges.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/utils/filter_date_ranges.dart -------------------------------------------------------------------------------- /lib/utils/filters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/utils/filters.dart -------------------------------------------------------------------------------- /lib/utils/format_helpers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/utils/format_helpers.dart -------------------------------------------------------------------------------- /lib/utils/generate_files.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/utils/generate_files.dart -------------------------------------------------------------------------------- /lib/utils/grouper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/utils/grouper.dart -------------------------------------------------------------------------------- /lib/utils/locale.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/utils/locale.dart -------------------------------------------------------------------------------- /lib/utils/native_methods.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/utils/native_methods.dart -------------------------------------------------------------------------------- /lib/utils/phone_formatter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/utils/phone_formatter.dart -------------------------------------------------------------------------------- /lib/utils/snackbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/utils/snackbar.dart -------------------------------------------------------------------------------- /lib/utils/tracking_metrics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/utils/tracking_metrics.dart -------------------------------------------------------------------------------- /lib/utils/whatsapp_launcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/lib/utils/whatsapp_launcher.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanmeet007/logger/HEAD/pubspec.yaml --------------------------------------------------------------------------------