├── .firebaserc ├── .gitignore ├── .metadata ├── .vscode └── settings.json ├── .vscodecounter ├── 2022-02-03_00-14-06 │ ├── details.md │ ├── diff-details.md │ ├── diff.csv │ ├── diff.md │ ├── diff.txt │ ├── results.csv │ ├── results.json │ ├── results.md │ └── results.txt ├── 2022-02-26_23-48-01 │ ├── details.md │ ├── diff-details.md │ ├── diff.csv │ ├── diff.md │ ├── diff.txt │ ├── results.csv │ ├── results.json │ ├── results.md │ └── results.txt ├── 2022-02-27_13-38-22 │ ├── details.md │ ├── diff-details.md │ ├── diff.csv │ ├── diff.md │ ├── diff.txt │ ├── results.csv │ ├── results.json │ ├── results.md │ └── results.txt ├── 2022-03-13_22-51-33 │ ├── details.md │ ├── diff-details.md │ ├── diff.csv │ ├── diff.md │ ├── diff.txt │ ├── results.csv │ ├── results.json │ ├── results.md │ └── results.txt └── 2022-03-15_08-17-49 │ ├── details.md │ ├── diff-details.md │ ├── diff.csv │ ├── diff.md │ ├── diff.txt │ ├── results.csv │ ├── results.json │ ├── results.md │ └── results.txt ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── google-services.json │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── elisha │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-night-v21 │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── drawable-night │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── drawable-v21 │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── app_icons │ ├── app_icon.png │ ├── app_icon_android.png │ ├── banner.png │ ├── banner_android.png │ └── store_icon.png └── images │ ├── church_1.jpg │ ├── church_2.jpg │ ├── church_3.jpg │ ├── nature_1.jpg │ ├── nature_10.jpg │ ├── nature_2.jpg │ ├── nature_3.jpg │ ├── nature_4.jpg │ ├── nature_5.jpg │ ├── nature_6.jpg │ ├── nature_7.jpg │ ├── nature_8.jpg │ └── nature_9.jpg ├── backend ├── asv.json ├── bbe.json ├── kjv.json ├── web.json └── ylt.json ├── firebase.json ├── flutter_launcher_icons.yaml ├── flutter_native_splash.yaml ├── fonts ├── Inter-Bold.otf ├── Inter-BoldItalic.otf ├── Inter-Italic.otf ├── Inter-Medium.otf ├── Inter-MediumItalic.otf ├── Inter-Regular.otf ├── Inter-SemiBold.otf ├── Inter-SemiBoldItalic.otf ├── NewYork.ttf └── NewYorkItalic.ttf ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── 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 └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ ├── LaunchBackground.imageset │ │ ├── Contents.json │ │ ├── background.png │ │ └── darkbackground.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── GoogleService-Info.plist │ ├── Info.plist │ ├── Runner-Bridging-Header.h │ └── Runner.entitlements ├── lib ├── main.dart └── src │ ├── config │ ├── bottom_navigation_bar.dart │ ├── constants.dart │ └── exceptions.dart │ ├── models │ ├── book.dart │ ├── chapter.dart │ ├── daily_devotional.dart │ ├── daily_reading.dart │ ├── local_user.dart │ ├── reading.dart │ ├── translation.dart │ ├── translation_book_chapter.dart │ ├── verse.dart │ ├── youtube_channel.dart │ └── youtube_video.dart │ ├── providers │ ├── bible_books_provider.dart │ ├── bible_chapters_provider.dart │ ├── bible_repository_provider.dart │ ├── bible_service_provider.dart │ ├── bible_translations_provider.dart │ ├── bible_verses_provider.dart │ ├── daily_devotional_service_provider.dart │ ├── daily_devotional_today_provider.dart │ ├── daily_readings_future_provider.dart │ ├── daily_readings_service_provider.dart │ ├── last_translation_book_chapter_provider.dart │ ├── local_user_repository_provider.dart │ ├── reader_settings_repository_provider.dart │ ├── streaks_repository_provider.dart │ ├── study_tools_repository_provider.dart │ ├── sunday_mass_service_provider.dart │ ├── verse_of_the_day_future_provider.dart │ ├── verse_of_the_day_service_provider.dart │ ├── youtube_fetch_channel_future_provider.dart │ ├── youtube_fetch_latest_church_video_future_provider.dart │ └── youtube_service_provider.dart │ ├── repositories │ ├── bible_repository.dart │ ├── last_translation_book_chapter_repository.dart │ ├── local_user_repository.dart │ ├── reader_settings_repository.dart │ ├── streaks_repository.dart │ └── study_tools_repository.dart │ ├── services │ ├── bible_service.dart │ ├── daily_devotional_service.dart │ ├── daily_readings_service.dart │ ├── sunday_mass_service.dart │ ├── verse_of_the_day_service.dart │ └── youtube_service.dart │ └── ui │ ├── components │ ├── bible_reader.dart │ ├── daily_devotional_card.dart │ ├── error_body.dart │ ├── error_card.dart │ ├── loading_card.dart │ ├── show_favorite_verse_bottom_sheet.dart │ ├── something_went_wrong.dart │ ├── streaks_card.dart │ ├── sunday_mass_card.dart │ ├── terms_and_privacy_policy_text.dart │ ├── unexpected_error.dart │ └── verse_of_the_day_card.dart │ └── views │ ├── bible_view │ ├── bible_view.dart │ └── components │ │ └── translation_card.dart │ ├── bookmarked_chapter_view │ ├── bookmarked_chapter_view.dart │ └── components │ │ └── bookmarked_chapter_view_header.dart │ ├── bookmarked_chapters_view │ ├── bookmarked_chapters_view.dart │ └── components │ │ ├── bookmarked_chapter_card.dart │ │ └── bookmarked_chapters_view_header.dart │ ├── church_view │ ├── church_view.dart │ └── components │ │ ├── church_view_header.dart │ │ └── daily_readings_card.dart │ ├── current_view.dart │ ├── daily_devotional_view │ ├── components │ │ └── daily_devotional_view_header.dart │ └── daily_devotional_view.dart │ ├── daily_readings_view │ ├── components │ │ └── daily_readings_view_header.dart │ └── daily_readings_view.dart │ ├── favorite_verses_view │ ├── components │ │ ├── favorite_verse_card.dart │ │ └── favorite_verses_view_header.dart │ └── favorite_verses_view.dart │ ├── home_view │ ├── components │ │ └── home_view_header.dart │ └── home_view.dart │ ├── introduction_view │ ├── components │ │ ├── birth_date_input.dart │ │ ├── first_name_input.dart │ │ └── last_name_input.dart │ └── introduction_view.dart │ ├── login_wrapper.dart │ ├── profile_view │ ├── components │ │ ├── about_card.dart │ │ ├── bookmarks_card.dart │ │ ├── favorite_verses_card.dart │ │ ├── privacy_policy_card.dart │ │ ├── profile_view_header.dart │ │ ├── settings_card.dart │ │ └── support_card.dart │ └── profile_view.dart │ ├── settings_view │ ├── components │ │ ├── change_birth_date_card.dart │ │ ├── change_first_name_card.dart │ │ ├── change_last_name_card.dart │ │ ├── reader_settings_card.dart │ │ └── settings_view_header.dart │ └── settings_view.dart │ ├── sunday_mass_view │ ├── components │ │ ├── church_youtube_channel_card.dart │ │ └── sunday_mass_view_header.dart │ └── sunday_mass_view.dart │ └── verse_of_the_day_view │ └── verse_of_the_day_view.dart ├── pubspec.lock ├── pubspec.yaml ├── screenshots ├── general │ ├── ipadnew │ │ ├── Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.14.54.png │ │ ├── Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.16.02.png │ │ ├── Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.16.03.png │ │ ├── Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.16.07.png │ │ ├── Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.19.20.png │ │ ├── Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.19.34.png │ │ ├── Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.27.41.png │ │ └── Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.44.43.png │ ├── ipadold │ │ ├── Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.45.19.png │ │ ├── Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.45.24.png │ │ ├── Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.45.40.png │ │ ├── Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.45.42.png │ │ ├── Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.46.18.png │ │ ├── Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.46.21.png │ │ ├── Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.49.30.png │ │ └── Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.50.36.png │ ├── iphone │ │ ├── IMG_8836.PNG │ │ ├── IMG_8839.PNG │ │ ├── IMG_8840.PNG │ │ ├── IMG_8844.PNG │ │ ├── IMG_8845.PNG │ │ ├── IMG_8846.PNG │ │ ├── IMG_8855.PNG │ │ └── Simulator Screen Shot - iPhone 13 Pro Max - 2022-02-01 at 12.59.22.png │ ├── nexus10 │ │ ├── Screenshot_1644727380.png │ │ ├── Screenshot_1644727384.png │ │ ├── Screenshot_1644727393.png │ │ ├── Screenshot_1644727416.png │ │ ├── Screenshot_1644727726.png │ │ ├── Screenshot_1644727730.png │ │ ├── Screenshot_1644727749.png │ │ └── Screenshot_1644727783.png │ ├── nexus7 │ │ ├── Screenshot_1644726516.png │ │ ├── Screenshot_1644726520.png │ │ ├── Screenshot_1644726529.png │ │ ├── Screenshot_1644726547.png │ │ ├── Screenshot_1644726835.png │ │ ├── Screenshot_1644726838.png │ │ ├── Screenshot_1644726847.png │ │ └── Screenshot_1644726888.png │ └── pixel │ │ ├── Screenshot_1644709813.png │ │ ├── Screenshot_1644710044.png │ │ ├── Screenshot_1644714683.png │ │ ├── Screenshot_1644714909.png │ │ ├── Screenshot_1644715101.png │ │ ├── Screenshot_1644715134.png │ │ ├── Screenshot_1644715142.png │ │ └── Screenshot_1644715398.png ├── old │ ├── 129298226-936fdde2-c77d-457b-a864-691864279780.png │ ├── 129298272-b2c6154e-4eb5-4ce9-bb44-dc45d699cf52.png │ ├── 129298376-cd6f9c90-0b8f-492e-9bfd-2d12089a2fd0.png │ ├── 129298407-a6d93978-5ea2-49a6-8c44-5f815d0c125a.png │ └── Screen Shot 2022-02-01 at 1.32.50 PM.png └── promotional │ ├── ipad │ ├── ipad_1.png │ ├── ipad_2.png │ ├── ipad_3.png │ ├── ipad_4.png │ ├── ipad_5.png │ ├── ipad_6.png │ └── ipad_7.png │ └── iphone │ ├── ipad_1.png │ ├── ipad_2.png │ ├── iphone_1.png │ ├── iphone_10.png │ ├── iphone_11.png │ ├── iphone_12.png │ ├── iphone_13.png │ ├── iphone_14.png │ ├── iphone_2.png │ ├── iphone_3.png │ ├── iphone_4.png │ ├── iphone_5.png │ ├── iphone_6.png │ ├── iphone_7.png │ ├── iphone_8.png │ └── iphone_9.png └── scripts ├── git_committer.py └── license_tool.py /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "dart.lineLength": 120 3 | } 4 | -------------------------------------------------------------------------------- /.vscodecounter/2022-02-03_00-14-06/details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-03_00-14-06/details.md -------------------------------------------------------------------------------- /.vscodecounter/2022-02-03_00-14-06/diff-details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-03_00-14-06/diff-details.md -------------------------------------------------------------------------------- /.vscodecounter/2022-02-03_00-14-06/diff.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-03_00-14-06/diff.csv -------------------------------------------------------------------------------- /.vscodecounter/2022-02-03_00-14-06/diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-03_00-14-06/diff.md -------------------------------------------------------------------------------- /.vscodecounter/2022-02-03_00-14-06/diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-03_00-14-06/diff.txt -------------------------------------------------------------------------------- /.vscodecounter/2022-02-03_00-14-06/results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-03_00-14-06/results.csv -------------------------------------------------------------------------------- /.vscodecounter/2022-02-03_00-14-06/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-03_00-14-06/results.json -------------------------------------------------------------------------------- /.vscodecounter/2022-02-03_00-14-06/results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-03_00-14-06/results.md -------------------------------------------------------------------------------- /.vscodecounter/2022-02-03_00-14-06/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-03_00-14-06/results.txt -------------------------------------------------------------------------------- /.vscodecounter/2022-02-26_23-48-01/details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-26_23-48-01/details.md -------------------------------------------------------------------------------- /.vscodecounter/2022-02-26_23-48-01/diff-details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-26_23-48-01/diff-details.md -------------------------------------------------------------------------------- /.vscodecounter/2022-02-26_23-48-01/diff.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-26_23-48-01/diff.csv -------------------------------------------------------------------------------- /.vscodecounter/2022-02-26_23-48-01/diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-26_23-48-01/diff.md -------------------------------------------------------------------------------- /.vscodecounter/2022-02-26_23-48-01/diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-26_23-48-01/diff.txt -------------------------------------------------------------------------------- /.vscodecounter/2022-02-26_23-48-01/results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-26_23-48-01/results.csv -------------------------------------------------------------------------------- /.vscodecounter/2022-02-26_23-48-01/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-26_23-48-01/results.json -------------------------------------------------------------------------------- /.vscodecounter/2022-02-26_23-48-01/results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-26_23-48-01/results.md -------------------------------------------------------------------------------- /.vscodecounter/2022-02-26_23-48-01/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-26_23-48-01/results.txt -------------------------------------------------------------------------------- /.vscodecounter/2022-02-27_13-38-22/details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-27_13-38-22/details.md -------------------------------------------------------------------------------- /.vscodecounter/2022-02-27_13-38-22/diff-details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-27_13-38-22/diff-details.md -------------------------------------------------------------------------------- /.vscodecounter/2022-02-27_13-38-22/diff.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-27_13-38-22/diff.csv -------------------------------------------------------------------------------- /.vscodecounter/2022-02-27_13-38-22/diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-27_13-38-22/diff.md -------------------------------------------------------------------------------- /.vscodecounter/2022-02-27_13-38-22/diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-27_13-38-22/diff.txt -------------------------------------------------------------------------------- /.vscodecounter/2022-02-27_13-38-22/results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-27_13-38-22/results.csv -------------------------------------------------------------------------------- /.vscodecounter/2022-02-27_13-38-22/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-27_13-38-22/results.json -------------------------------------------------------------------------------- /.vscodecounter/2022-02-27_13-38-22/results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-27_13-38-22/results.md -------------------------------------------------------------------------------- /.vscodecounter/2022-02-27_13-38-22/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-02-27_13-38-22/results.txt -------------------------------------------------------------------------------- /.vscodecounter/2022-03-13_22-51-33/details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-03-13_22-51-33/details.md -------------------------------------------------------------------------------- /.vscodecounter/2022-03-13_22-51-33/diff-details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-03-13_22-51-33/diff-details.md -------------------------------------------------------------------------------- /.vscodecounter/2022-03-13_22-51-33/diff.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-03-13_22-51-33/diff.csv -------------------------------------------------------------------------------- /.vscodecounter/2022-03-13_22-51-33/diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-03-13_22-51-33/diff.md -------------------------------------------------------------------------------- /.vscodecounter/2022-03-13_22-51-33/diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-03-13_22-51-33/diff.txt -------------------------------------------------------------------------------- /.vscodecounter/2022-03-13_22-51-33/results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-03-13_22-51-33/results.csv -------------------------------------------------------------------------------- /.vscodecounter/2022-03-13_22-51-33/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-03-13_22-51-33/results.json -------------------------------------------------------------------------------- /.vscodecounter/2022-03-13_22-51-33/results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-03-13_22-51-33/results.md -------------------------------------------------------------------------------- /.vscodecounter/2022-03-13_22-51-33/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-03-13_22-51-33/results.txt -------------------------------------------------------------------------------- /.vscodecounter/2022-03-15_08-17-49/details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-03-15_08-17-49/details.md -------------------------------------------------------------------------------- /.vscodecounter/2022-03-15_08-17-49/diff-details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-03-15_08-17-49/diff-details.md -------------------------------------------------------------------------------- /.vscodecounter/2022-03-15_08-17-49/diff.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-03-15_08-17-49/diff.csv -------------------------------------------------------------------------------- /.vscodecounter/2022-03-15_08-17-49/diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-03-15_08-17-49/diff.md -------------------------------------------------------------------------------- /.vscodecounter/2022-03-15_08-17-49/diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-03-15_08-17-49/diff.txt -------------------------------------------------------------------------------- /.vscodecounter/2022-03-15_08-17-49/results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-03-15_08-17-49/results.csv -------------------------------------------------------------------------------- /.vscodecounter/2022-03-15_08-17-49/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-03-15_08-17-49/results.json -------------------------------------------------------------------------------- /.vscodecounter/2022-03-15_08-17-49/results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-03-15_08-17-49/results.md -------------------------------------------------------------------------------- /.vscodecounter/2022-03-15_08-17-49/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/.vscodecounter/2022-03-15_08-17-49/results.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/elisha/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/app/src/main/kotlin/com/example/elisha/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-v21/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/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/31Carlton7/elisha/HEAD/android/app/src/main/res/drawable-night-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/app/src/main/res/drawable-night/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/app/src/main/res/drawable-night/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/app/src/main/res/drawable-v21/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/app/src/main/res/drawable/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/app_icons/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/assets/app_icons/app_icon.png -------------------------------------------------------------------------------- /assets/app_icons/app_icon_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/assets/app_icons/app_icon_android.png -------------------------------------------------------------------------------- /assets/app_icons/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/assets/app_icons/banner.png -------------------------------------------------------------------------------- /assets/app_icons/banner_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/assets/app_icons/banner_android.png -------------------------------------------------------------------------------- /assets/app_icons/store_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/assets/app_icons/store_icon.png -------------------------------------------------------------------------------- /assets/images/church_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/assets/images/church_1.jpg -------------------------------------------------------------------------------- /assets/images/church_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/assets/images/church_2.jpg -------------------------------------------------------------------------------- /assets/images/church_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/assets/images/church_3.jpg -------------------------------------------------------------------------------- /assets/images/nature_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/assets/images/nature_1.jpg -------------------------------------------------------------------------------- /assets/images/nature_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/assets/images/nature_10.jpg -------------------------------------------------------------------------------- /assets/images/nature_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/assets/images/nature_2.jpg -------------------------------------------------------------------------------- /assets/images/nature_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/assets/images/nature_3.jpg -------------------------------------------------------------------------------- /assets/images/nature_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/assets/images/nature_4.jpg -------------------------------------------------------------------------------- /assets/images/nature_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/assets/images/nature_5.jpg -------------------------------------------------------------------------------- /assets/images/nature_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/assets/images/nature_6.jpg -------------------------------------------------------------------------------- /assets/images/nature_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/assets/images/nature_7.jpg -------------------------------------------------------------------------------- /assets/images/nature_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/assets/images/nature_8.jpg -------------------------------------------------------------------------------- /assets/images/nature_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/assets/images/nature_9.jpg -------------------------------------------------------------------------------- /backend/asv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/backend/asv.json -------------------------------------------------------------------------------- /backend/bbe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/backend/bbe.json -------------------------------------------------------------------------------- /backend/kjv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/backend/kjv.json -------------------------------------------------------------------------------- /backend/web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/backend/web.json -------------------------------------------------------------------------------- /backend/ylt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/backend/ylt.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/firebase.json -------------------------------------------------------------------------------- /flutter_launcher_icons.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/flutter_launcher_icons.yaml -------------------------------------------------------------------------------- /flutter_native_splash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/flutter_native_splash.yaml -------------------------------------------------------------------------------- /fonts/Inter-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/fonts/Inter-Bold.otf -------------------------------------------------------------------------------- /fonts/Inter-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/fonts/Inter-BoldItalic.otf -------------------------------------------------------------------------------- /fonts/Inter-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/fonts/Inter-Italic.otf -------------------------------------------------------------------------------- /fonts/Inter-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/fonts/Inter-Medium.otf -------------------------------------------------------------------------------- /fonts/Inter-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/fonts/Inter-MediumItalic.otf -------------------------------------------------------------------------------- /fonts/Inter-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/fonts/Inter-Regular.otf -------------------------------------------------------------------------------- /fonts/Inter-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/fonts/Inter-SemiBold.otf -------------------------------------------------------------------------------- /fonts/Inter-SemiBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/fonts/Inter-SemiBoldItalic.otf -------------------------------------------------------------------------------- /fonts/NewYork.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/fonts/NewYork.ttf -------------------------------------------------------------------------------- /fonts/NewYorkItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/fonts/NewYorkItalic.ttf -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchBackground.imageset/darkbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/LaunchBackground.imageset/darkbackground.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/GoogleService-Info.plist -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/Runner/Runner.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/ios/Runner/Runner.entitlements -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/src/config/bottom_navigation_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/config/bottom_navigation_bar.dart -------------------------------------------------------------------------------- /lib/src/config/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/config/constants.dart -------------------------------------------------------------------------------- /lib/src/config/exceptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/config/exceptions.dart -------------------------------------------------------------------------------- /lib/src/models/book.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/models/book.dart -------------------------------------------------------------------------------- /lib/src/models/chapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/models/chapter.dart -------------------------------------------------------------------------------- /lib/src/models/daily_devotional.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/models/daily_devotional.dart -------------------------------------------------------------------------------- /lib/src/models/daily_reading.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/models/daily_reading.dart -------------------------------------------------------------------------------- /lib/src/models/local_user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/models/local_user.dart -------------------------------------------------------------------------------- /lib/src/models/reading.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/models/reading.dart -------------------------------------------------------------------------------- /lib/src/models/translation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/models/translation.dart -------------------------------------------------------------------------------- /lib/src/models/translation_book_chapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/models/translation_book_chapter.dart -------------------------------------------------------------------------------- /lib/src/models/verse.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/models/verse.dart -------------------------------------------------------------------------------- /lib/src/models/youtube_channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/models/youtube_channel.dart -------------------------------------------------------------------------------- /lib/src/models/youtube_video.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/models/youtube_video.dart -------------------------------------------------------------------------------- /lib/src/providers/bible_books_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/providers/bible_books_provider.dart -------------------------------------------------------------------------------- /lib/src/providers/bible_chapters_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/providers/bible_chapters_provider.dart -------------------------------------------------------------------------------- /lib/src/providers/bible_repository_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/providers/bible_repository_provider.dart -------------------------------------------------------------------------------- /lib/src/providers/bible_service_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/providers/bible_service_provider.dart -------------------------------------------------------------------------------- /lib/src/providers/bible_translations_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/providers/bible_translations_provider.dart -------------------------------------------------------------------------------- /lib/src/providers/bible_verses_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/providers/bible_verses_provider.dart -------------------------------------------------------------------------------- /lib/src/providers/daily_devotional_service_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/providers/daily_devotional_service_provider.dart -------------------------------------------------------------------------------- /lib/src/providers/daily_devotional_today_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/providers/daily_devotional_today_provider.dart -------------------------------------------------------------------------------- /lib/src/providers/daily_readings_future_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/providers/daily_readings_future_provider.dart -------------------------------------------------------------------------------- /lib/src/providers/daily_readings_service_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/providers/daily_readings_service_provider.dart -------------------------------------------------------------------------------- /lib/src/providers/last_translation_book_chapter_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/providers/last_translation_book_chapter_provider.dart -------------------------------------------------------------------------------- /lib/src/providers/local_user_repository_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/providers/local_user_repository_provider.dart -------------------------------------------------------------------------------- /lib/src/providers/reader_settings_repository_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/providers/reader_settings_repository_provider.dart -------------------------------------------------------------------------------- /lib/src/providers/streaks_repository_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/providers/streaks_repository_provider.dart -------------------------------------------------------------------------------- /lib/src/providers/study_tools_repository_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/providers/study_tools_repository_provider.dart -------------------------------------------------------------------------------- /lib/src/providers/sunday_mass_service_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/providers/sunday_mass_service_provider.dart -------------------------------------------------------------------------------- /lib/src/providers/verse_of_the_day_future_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/providers/verse_of_the_day_future_provider.dart -------------------------------------------------------------------------------- /lib/src/providers/verse_of_the_day_service_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/providers/verse_of_the_day_service_provider.dart -------------------------------------------------------------------------------- /lib/src/providers/youtube_fetch_channel_future_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/providers/youtube_fetch_channel_future_provider.dart -------------------------------------------------------------------------------- /lib/src/providers/youtube_fetch_latest_church_video_future_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/providers/youtube_fetch_latest_church_video_future_provider.dart -------------------------------------------------------------------------------- /lib/src/providers/youtube_service_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/providers/youtube_service_provider.dart -------------------------------------------------------------------------------- /lib/src/repositories/bible_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/repositories/bible_repository.dart -------------------------------------------------------------------------------- /lib/src/repositories/last_translation_book_chapter_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/repositories/last_translation_book_chapter_repository.dart -------------------------------------------------------------------------------- /lib/src/repositories/local_user_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/repositories/local_user_repository.dart -------------------------------------------------------------------------------- /lib/src/repositories/reader_settings_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/repositories/reader_settings_repository.dart -------------------------------------------------------------------------------- /lib/src/repositories/streaks_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/repositories/streaks_repository.dart -------------------------------------------------------------------------------- /lib/src/repositories/study_tools_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/repositories/study_tools_repository.dart -------------------------------------------------------------------------------- /lib/src/services/bible_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/services/bible_service.dart -------------------------------------------------------------------------------- /lib/src/services/daily_devotional_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/services/daily_devotional_service.dart -------------------------------------------------------------------------------- /lib/src/services/daily_readings_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/services/daily_readings_service.dart -------------------------------------------------------------------------------- /lib/src/services/sunday_mass_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/services/sunday_mass_service.dart -------------------------------------------------------------------------------- /lib/src/services/verse_of_the_day_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/services/verse_of_the_day_service.dart -------------------------------------------------------------------------------- /lib/src/services/youtube_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/services/youtube_service.dart -------------------------------------------------------------------------------- /lib/src/ui/components/bible_reader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/components/bible_reader.dart -------------------------------------------------------------------------------- /lib/src/ui/components/daily_devotional_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/components/daily_devotional_card.dart -------------------------------------------------------------------------------- /lib/src/ui/components/error_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/components/error_body.dart -------------------------------------------------------------------------------- /lib/src/ui/components/error_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/components/error_card.dart -------------------------------------------------------------------------------- /lib/src/ui/components/loading_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/components/loading_card.dart -------------------------------------------------------------------------------- /lib/src/ui/components/show_favorite_verse_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/components/show_favorite_verse_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/src/ui/components/something_went_wrong.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/components/something_went_wrong.dart -------------------------------------------------------------------------------- /lib/src/ui/components/streaks_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/components/streaks_card.dart -------------------------------------------------------------------------------- /lib/src/ui/components/sunday_mass_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/components/sunday_mass_card.dart -------------------------------------------------------------------------------- /lib/src/ui/components/terms_and_privacy_policy_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/components/terms_and_privacy_policy_text.dart -------------------------------------------------------------------------------- /lib/src/ui/components/unexpected_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/components/unexpected_error.dart -------------------------------------------------------------------------------- /lib/src/ui/components/verse_of_the_day_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/components/verse_of_the_day_card.dart -------------------------------------------------------------------------------- /lib/src/ui/views/bible_view/bible_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/bible_view/bible_view.dart -------------------------------------------------------------------------------- /lib/src/ui/views/bible_view/components/translation_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/bible_view/components/translation_card.dart -------------------------------------------------------------------------------- /lib/src/ui/views/bookmarked_chapter_view/bookmarked_chapter_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/bookmarked_chapter_view/bookmarked_chapter_view.dart -------------------------------------------------------------------------------- /lib/src/ui/views/bookmarked_chapter_view/components/bookmarked_chapter_view_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/bookmarked_chapter_view/components/bookmarked_chapter_view_header.dart -------------------------------------------------------------------------------- /lib/src/ui/views/bookmarked_chapters_view/bookmarked_chapters_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/bookmarked_chapters_view/bookmarked_chapters_view.dart -------------------------------------------------------------------------------- /lib/src/ui/views/bookmarked_chapters_view/components/bookmarked_chapter_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/bookmarked_chapters_view/components/bookmarked_chapter_card.dart -------------------------------------------------------------------------------- /lib/src/ui/views/bookmarked_chapters_view/components/bookmarked_chapters_view_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/bookmarked_chapters_view/components/bookmarked_chapters_view_header.dart -------------------------------------------------------------------------------- /lib/src/ui/views/church_view/church_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/church_view/church_view.dart -------------------------------------------------------------------------------- /lib/src/ui/views/church_view/components/church_view_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/church_view/components/church_view_header.dart -------------------------------------------------------------------------------- /lib/src/ui/views/church_view/components/daily_readings_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/church_view/components/daily_readings_card.dart -------------------------------------------------------------------------------- /lib/src/ui/views/current_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/current_view.dart -------------------------------------------------------------------------------- /lib/src/ui/views/daily_devotional_view/components/daily_devotional_view_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/daily_devotional_view/components/daily_devotional_view_header.dart -------------------------------------------------------------------------------- /lib/src/ui/views/daily_devotional_view/daily_devotional_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/daily_devotional_view/daily_devotional_view.dart -------------------------------------------------------------------------------- /lib/src/ui/views/daily_readings_view/components/daily_readings_view_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/daily_readings_view/components/daily_readings_view_header.dart -------------------------------------------------------------------------------- /lib/src/ui/views/daily_readings_view/daily_readings_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/daily_readings_view/daily_readings_view.dart -------------------------------------------------------------------------------- /lib/src/ui/views/favorite_verses_view/components/favorite_verse_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/favorite_verses_view/components/favorite_verse_card.dart -------------------------------------------------------------------------------- /lib/src/ui/views/favorite_verses_view/components/favorite_verses_view_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/favorite_verses_view/components/favorite_verses_view_header.dart -------------------------------------------------------------------------------- /lib/src/ui/views/favorite_verses_view/favorite_verses_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/favorite_verses_view/favorite_verses_view.dart -------------------------------------------------------------------------------- /lib/src/ui/views/home_view/components/home_view_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/home_view/components/home_view_header.dart -------------------------------------------------------------------------------- /lib/src/ui/views/home_view/home_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/home_view/home_view.dart -------------------------------------------------------------------------------- /lib/src/ui/views/introduction_view/components/birth_date_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/introduction_view/components/birth_date_input.dart -------------------------------------------------------------------------------- /lib/src/ui/views/introduction_view/components/first_name_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/introduction_view/components/first_name_input.dart -------------------------------------------------------------------------------- /lib/src/ui/views/introduction_view/components/last_name_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/introduction_view/components/last_name_input.dart -------------------------------------------------------------------------------- /lib/src/ui/views/introduction_view/introduction_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/introduction_view/introduction_view.dart -------------------------------------------------------------------------------- /lib/src/ui/views/login_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/login_wrapper.dart -------------------------------------------------------------------------------- /lib/src/ui/views/profile_view/components/about_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/profile_view/components/about_card.dart -------------------------------------------------------------------------------- /lib/src/ui/views/profile_view/components/bookmarks_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/profile_view/components/bookmarks_card.dart -------------------------------------------------------------------------------- /lib/src/ui/views/profile_view/components/favorite_verses_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/profile_view/components/favorite_verses_card.dart -------------------------------------------------------------------------------- /lib/src/ui/views/profile_view/components/privacy_policy_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/profile_view/components/privacy_policy_card.dart -------------------------------------------------------------------------------- /lib/src/ui/views/profile_view/components/profile_view_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/profile_view/components/profile_view_header.dart -------------------------------------------------------------------------------- /lib/src/ui/views/profile_view/components/settings_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/profile_view/components/settings_card.dart -------------------------------------------------------------------------------- /lib/src/ui/views/profile_view/components/support_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/profile_view/components/support_card.dart -------------------------------------------------------------------------------- /lib/src/ui/views/profile_view/profile_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/profile_view/profile_view.dart -------------------------------------------------------------------------------- /lib/src/ui/views/settings_view/components/change_birth_date_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/settings_view/components/change_birth_date_card.dart -------------------------------------------------------------------------------- /lib/src/ui/views/settings_view/components/change_first_name_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/settings_view/components/change_first_name_card.dart -------------------------------------------------------------------------------- /lib/src/ui/views/settings_view/components/change_last_name_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/settings_view/components/change_last_name_card.dart -------------------------------------------------------------------------------- /lib/src/ui/views/settings_view/components/reader_settings_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/settings_view/components/reader_settings_card.dart -------------------------------------------------------------------------------- /lib/src/ui/views/settings_view/components/settings_view_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/settings_view/components/settings_view_header.dart -------------------------------------------------------------------------------- /lib/src/ui/views/settings_view/settings_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/settings_view/settings_view.dart -------------------------------------------------------------------------------- /lib/src/ui/views/sunday_mass_view/components/church_youtube_channel_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/sunday_mass_view/components/church_youtube_channel_card.dart -------------------------------------------------------------------------------- /lib/src/ui/views/sunday_mass_view/components/sunday_mass_view_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/sunday_mass_view/components/sunday_mass_view_header.dart -------------------------------------------------------------------------------- /lib/src/ui/views/sunday_mass_view/sunday_mass_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/sunday_mass_view/sunday_mass_view.dart -------------------------------------------------------------------------------- /lib/src/ui/views/verse_of_the_day_view/verse_of_the_day_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/lib/src/ui/views/verse_of_the_day_view/verse_of_the_day_view.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screenshots/general/ipadnew/Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.14.54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/ipadnew/Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.14.54.png -------------------------------------------------------------------------------- /screenshots/general/ipadnew/Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.16.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/ipadnew/Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.16.02.png -------------------------------------------------------------------------------- /screenshots/general/ipadnew/Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.16.03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/ipadnew/Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.16.03.png -------------------------------------------------------------------------------- /screenshots/general/ipadnew/Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.16.07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/ipadnew/Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.16.07.png -------------------------------------------------------------------------------- /screenshots/general/ipadnew/Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.19.20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/ipadnew/Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.19.20.png -------------------------------------------------------------------------------- /screenshots/general/ipadnew/Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.19.34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/ipadnew/Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.19.34.png -------------------------------------------------------------------------------- /screenshots/general/ipadnew/Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.27.41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/ipadnew/Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.27.41.png -------------------------------------------------------------------------------- /screenshots/general/ipadnew/Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.44.43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/ipadnew/Simulator Screen Shot - iPad Pro (12.9-inch) (5th generation) - 2022-02-01 at 12.44.43.png -------------------------------------------------------------------------------- /screenshots/general/ipadold/Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.45.19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/ipadold/Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.45.19.png -------------------------------------------------------------------------------- /screenshots/general/ipadold/Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.45.24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/ipadold/Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.45.24.png -------------------------------------------------------------------------------- /screenshots/general/ipadold/Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.45.40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/ipadold/Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.45.40.png -------------------------------------------------------------------------------- /screenshots/general/ipadold/Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.45.42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/ipadold/Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.45.42.png -------------------------------------------------------------------------------- /screenshots/general/ipadold/Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.46.18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/ipadold/Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.46.18.png -------------------------------------------------------------------------------- /screenshots/general/ipadold/Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.46.21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/ipadold/Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.46.21.png -------------------------------------------------------------------------------- /screenshots/general/ipadold/Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.49.30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/ipadold/Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.49.30.png -------------------------------------------------------------------------------- /screenshots/general/ipadold/Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.50.36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/ipadold/Simulator Screen Shot - iPad Pro (12.9-inch) (2nd generation) - 2022-02-13 at 09.50.36.png -------------------------------------------------------------------------------- /screenshots/general/iphone/IMG_8836.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/iphone/IMG_8836.PNG -------------------------------------------------------------------------------- /screenshots/general/iphone/IMG_8839.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/iphone/IMG_8839.PNG -------------------------------------------------------------------------------- /screenshots/general/iphone/IMG_8840.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/iphone/IMG_8840.PNG -------------------------------------------------------------------------------- /screenshots/general/iphone/IMG_8844.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/iphone/IMG_8844.PNG -------------------------------------------------------------------------------- /screenshots/general/iphone/IMG_8845.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/iphone/IMG_8845.PNG -------------------------------------------------------------------------------- /screenshots/general/iphone/IMG_8846.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/iphone/IMG_8846.PNG -------------------------------------------------------------------------------- /screenshots/general/iphone/IMG_8855.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/iphone/IMG_8855.PNG -------------------------------------------------------------------------------- /screenshots/general/iphone/Simulator Screen Shot - iPhone 13 Pro Max - 2022-02-01 at 12.59.22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/iphone/Simulator Screen Shot - iPhone 13 Pro Max - 2022-02-01 at 12.59.22.png -------------------------------------------------------------------------------- /screenshots/general/nexus10/Screenshot_1644727380.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/nexus10/Screenshot_1644727380.png -------------------------------------------------------------------------------- /screenshots/general/nexus10/Screenshot_1644727384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/nexus10/Screenshot_1644727384.png -------------------------------------------------------------------------------- /screenshots/general/nexus10/Screenshot_1644727393.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/nexus10/Screenshot_1644727393.png -------------------------------------------------------------------------------- /screenshots/general/nexus10/Screenshot_1644727416.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/nexus10/Screenshot_1644727416.png -------------------------------------------------------------------------------- /screenshots/general/nexus10/Screenshot_1644727726.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/nexus10/Screenshot_1644727726.png -------------------------------------------------------------------------------- /screenshots/general/nexus10/Screenshot_1644727730.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/nexus10/Screenshot_1644727730.png -------------------------------------------------------------------------------- /screenshots/general/nexus10/Screenshot_1644727749.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/nexus10/Screenshot_1644727749.png -------------------------------------------------------------------------------- /screenshots/general/nexus10/Screenshot_1644727783.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/nexus10/Screenshot_1644727783.png -------------------------------------------------------------------------------- /screenshots/general/nexus7/Screenshot_1644726516.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/nexus7/Screenshot_1644726516.png -------------------------------------------------------------------------------- /screenshots/general/nexus7/Screenshot_1644726520.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/nexus7/Screenshot_1644726520.png -------------------------------------------------------------------------------- /screenshots/general/nexus7/Screenshot_1644726529.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/nexus7/Screenshot_1644726529.png -------------------------------------------------------------------------------- /screenshots/general/nexus7/Screenshot_1644726547.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/nexus7/Screenshot_1644726547.png -------------------------------------------------------------------------------- /screenshots/general/nexus7/Screenshot_1644726835.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/nexus7/Screenshot_1644726835.png -------------------------------------------------------------------------------- /screenshots/general/nexus7/Screenshot_1644726838.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/nexus7/Screenshot_1644726838.png -------------------------------------------------------------------------------- /screenshots/general/nexus7/Screenshot_1644726847.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/nexus7/Screenshot_1644726847.png -------------------------------------------------------------------------------- /screenshots/general/nexus7/Screenshot_1644726888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/nexus7/Screenshot_1644726888.png -------------------------------------------------------------------------------- /screenshots/general/pixel/Screenshot_1644709813.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/pixel/Screenshot_1644709813.png -------------------------------------------------------------------------------- /screenshots/general/pixel/Screenshot_1644710044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/pixel/Screenshot_1644710044.png -------------------------------------------------------------------------------- /screenshots/general/pixel/Screenshot_1644714683.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/pixel/Screenshot_1644714683.png -------------------------------------------------------------------------------- /screenshots/general/pixel/Screenshot_1644714909.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/pixel/Screenshot_1644714909.png -------------------------------------------------------------------------------- /screenshots/general/pixel/Screenshot_1644715101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/pixel/Screenshot_1644715101.png -------------------------------------------------------------------------------- /screenshots/general/pixel/Screenshot_1644715134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/pixel/Screenshot_1644715134.png -------------------------------------------------------------------------------- /screenshots/general/pixel/Screenshot_1644715142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/pixel/Screenshot_1644715142.png -------------------------------------------------------------------------------- /screenshots/general/pixel/Screenshot_1644715398.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/general/pixel/Screenshot_1644715398.png -------------------------------------------------------------------------------- /screenshots/old/129298226-936fdde2-c77d-457b-a864-691864279780.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/old/129298226-936fdde2-c77d-457b-a864-691864279780.png -------------------------------------------------------------------------------- /screenshots/old/129298272-b2c6154e-4eb5-4ce9-bb44-dc45d699cf52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/old/129298272-b2c6154e-4eb5-4ce9-bb44-dc45d699cf52.png -------------------------------------------------------------------------------- /screenshots/old/129298376-cd6f9c90-0b8f-492e-9bfd-2d12089a2fd0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/old/129298376-cd6f9c90-0b8f-492e-9bfd-2d12089a2fd0.png -------------------------------------------------------------------------------- /screenshots/old/129298407-a6d93978-5ea2-49a6-8c44-5f815d0c125a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/old/129298407-a6d93978-5ea2-49a6-8c44-5f815d0c125a.png -------------------------------------------------------------------------------- /screenshots/old/Screen Shot 2022-02-01 at 1.32.50 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/old/Screen Shot 2022-02-01 at 1.32.50 PM.png -------------------------------------------------------------------------------- /screenshots/promotional/ipad/ipad_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/promotional/ipad/ipad_1.png -------------------------------------------------------------------------------- /screenshots/promotional/ipad/ipad_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/promotional/ipad/ipad_2.png -------------------------------------------------------------------------------- /screenshots/promotional/ipad/ipad_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/promotional/ipad/ipad_3.png -------------------------------------------------------------------------------- /screenshots/promotional/ipad/ipad_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/promotional/ipad/ipad_4.png -------------------------------------------------------------------------------- /screenshots/promotional/ipad/ipad_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/promotional/ipad/ipad_5.png -------------------------------------------------------------------------------- /screenshots/promotional/ipad/ipad_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/promotional/ipad/ipad_6.png -------------------------------------------------------------------------------- /screenshots/promotional/ipad/ipad_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/promotional/ipad/ipad_7.png -------------------------------------------------------------------------------- /screenshots/promotional/iphone/ipad_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/promotional/iphone/ipad_1.png -------------------------------------------------------------------------------- /screenshots/promotional/iphone/ipad_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/promotional/iphone/ipad_2.png -------------------------------------------------------------------------------- /screenshots/promotional/iphone/iphone_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/promotional/iphone/iphone_1.png -------------------------------------------------------------------------------- /screenshots/promotional/iphone/iphone_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/promotional/iphone/iphone_10.png -------------------------------------------------------------------------------- /screenshots/promotional/iphone/iphone_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/promotional/iphone/iphone_11.png -------------------------------------------------------------------------------- /screenshots/promotional/iphone/iphone_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/promotional/iphone/iphone_12.png -------------------------------------------------------------------------------- /screenshots/promotional/iphone/iphone_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/promotional/iphone/iphone_13.png -------------------------------------------------------------------------------- /screenshots/promotional/iphone/iphone_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/promotional/iphone/iphone_14.png -------------------------------------------------------------------------------- /screenshots/promotional/iphone/iphone_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/promotional/iphone/iphone_2.png -------------------------------------------------------------------------------- /screenshots/promotional/iphone/iphone_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/promotional/iphone/iphone_3.png -------------------------------------------------------------------------------- /screenshots/promotional/iphone/iphone_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/promotional/iphone/iphone_4.png -------------------------------------------------------------------------------- /screenshots/promotional/iphone/iphone_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/promotional/iphone/iphone_5.png -------------------------------------------------------------------------------- /screenshots/promotional/iphone/iphone_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/promotional/iphone/iphone_6.png -------------------------------------------------------------------------------- /screenshots/promotional/iphone/iphone_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/promotional/iphone/iphone_7.png -------------------------------------------------------------------------------- /screenshots/promotional/iphone/iphone_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/promotional/iphone/iphone_8.png -------------------------------------------------------------------------------- /screenshots/promotional/iphone/iphone_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/screenshots/promotional/iphone/iphone_9.png -------------------------------------------------------------------------------- /scripts/git_committer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/scripts/git_committer.py -------------------------------------------------------------------------------- /scripts/license_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31Carlton7/elisha/HEAD/scripts/license_tool.py --------------------------------------------------------------------------------