-
Notifications
You must be signed in to change notification settings - Fork 317
feat: Add originalStartDate property for recurring events #600
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
ahmtydn
wants to merge
729
commits into
builttoroam:develop
from
ahmtydn:feature/add-original-start-date-for-recurring-events
Closed
feat: Add originalStartDate property for recurring events #600
ahmtydn
wants to merge
729
commits into
builttoroam:develop
from
ahmtydn:feature/add-original-start-date-for-recurring-events
Conversation
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
Push a prerelease version
Took me way too long to find this line.
Publish prerelease to pub.dev
Version bump from 4.0.0 to 4.0.1
Timezone implementation and fixes
Added event color (Android) + Updating of calendar color (Android/iOS)
When an Event object is created in flutter with null allDay value the value will default to false on iOS like it does on Android.
- Changed file permissions for various project files to ensure proper access. - Updated Runner.xcscheme to reflect new build configurations and added custom LLDB init file. - Modified AppDelegate.swift to use the new @main attribute. - Updated asset files and their permissions, including app icons and launch images. - Refactored event_item.dart and calendar_event.dart to improve code readability and performance. - Updated pubspec.yaml to use newer versions of dependencies: intl, uuid, flutter_timezone, and added collection package. - Created new build.gradle.kts for Android project configuration. - Added AndroidManifest.xml for debug and profile builds. - Implemented launch background and styles for Android. - Added initial test cases in RunnerTests.swift.
5886182 to
7124205
Compare
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.
Description
This PR adds support for retrieving the original start date of recurring events across all platforms (Android, iOS, and Dart).
Changes Made
Android:
originalStartDateproperty toEventmodelCalendarDelegateto retrieve and set original start date from calendar eventsEVENT_PROJECTION_DTSTART_INDEXin ConstantsiOS:
originalStartDateproperty to Event structDart:
originalStartproperty to Event model asTZDateTime?Benefits
Testing
Breaking Changes
None. This is a backward-compatible addition.
Related Issues
This enhancement supports better recurring event management and provides necessary data for event instance handling.