Add calendar and share actions to event details - #381
Merged
Conversation
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #381 +/- ##
===========================================
- Coverage 33.18% 22.00% -11.18%
===========================================
Files 25 25
Lines 1088 1145 +57
===========================================
- Hits 361 252 -109
- Misses 727 893 +166 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
vareversat
force-pushed
the
vibe/event-actions-81a783
branch
from
July 4, 2026 19:45
45161cc to
a2262cf
Compare
vareversat
force-pushed
the
vibe/event-actions-81a783
branch
from
July 28, 2026 21:05
105b243 to
374cdb2
Compare
vareversat
marked this pull request as ready for review
July 28, 2026 21:05
vareversat
force-pushed
the
vibe/event-actions-81a783
branch
2 times, most recently
from
August 1, 2026 16:12
1c3bf08 to
e8cb276
Compare
vareversat
temporarily deployed
to
Fastlane dry_run lane
August 1, 2026 16:23 — with
GitHub Actions
Inactive
vareversat
force-pushed
the
vibe/event-actions-81a783
branch
2 times, most recently
from
August 1, 2026 16:32
b342186 to
32a93d4
Compare
vareversat
temporarily deployed
to
Fastlane dry_run lane
August 1, 2026 16:43 — with
GitHub Actions
Inactive
vareversat
force-pushed
the
vibe/event-actions-81a783
branch
from
August 1, 2026 16:48
32a93d4 to
250d7f2
Compare
vareversat
temporarily deployed
to
Fastlane dry_run lane
August 1, 2026 16:56 — with
GitHub Actions
Inactive
vareversat
force-pushed
the
vibe/event-actions-81a783
branch
from
August 1, 2026 17:04
250d7f2 to
2bec707
Compare
- Add add_2_calendar and share_plus dependencies to pubspec.yaml - Create EventShareService with addToCalendar and shareEvent methods - Add two action buttons to ForecastInformationBottomSheet: - Add to Calendar button (primary color) - Share Event button (secondary color) - Add localization strings for all three languages (en, fr, es) - Use app's existing aesthetic (rounded buttons, icons, colors) Co-authored-by: vareversat <vareversat@users.noreply.github.com>
vareversat
enabled auto-merge (squash)
August 1, 2026 17:08
vareversat
temporarily deployed
to
Fastlane dry_run lane
August 1, 2026 17:14 — with
GitHub Actions
Inactive
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Changes Made
Dependencies (Using Requested Versions)
device_calendar_plus: ^0.7.1for calendar integration (modern, maintained plugin)share_plus: ^13.2.0for sharing functionality (latest version)New Files
lib/service/event_share_service.dart: Service class with static methods for calendar and share actionsModified Files
lib/widgets/bottom_sheets/forecast_information_bottom_sheet.dart: Added two action buttons at the bottompubspec.yaml: Added new dependencieslib/l10n/app_en.arb: Added localization strings for Englishlib/l10n/app_fr.arb: Added localization strings for Frenchlib/l10n/app_es.arb: Added localization strings for SpanishPlatform-Specific Configurations
Android (
android/app/src/main/AndroidManifest.xml)READ_CALENDARandWRITE_CALENDARiOS (
ios/Runner/Info.plist)NSCalendarsUsageDescriptionfor calendar access (iOS 10-16)NSCalendarsFullAccessUsageDescriptionfor full access (iOS 17+)NSCalendarsWriteOnlyAccessUsageDescriptionfor write-only access (iOS 17+)CFBundleLocalizationsto support calendar dialog in all app languages (en, fr, es)UI Changes
Why device_calendar_plus?
Verification