-
Notifications
You must be signed in to change notification settings - Fork 17
fix late Initialization #1975
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
Closed
fix late Initialization #1975
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
… with location data. Remove deprecated location handling from ScreenController.
- Introduced FilePickerAction to handle file selection from gallery or files. - Updated ScreenController to remove deprecated file manager references. - Registered FilePickerAction in ActionInvokable for action handling. - Adjusted imports in relevant files to integrate the new action.
- Added execution logic for PlaidLinkAction in the action framework. - Removed deprecated PlaidLink handling from ScreenController. - Updated ActionInvokable to include ActionType.openPlaidLink. - Introduced error handling for Plaid link opening process.
- Updated ActionInvokable to include ActionType.updateBadgeCount and ActionType.clearBadgeCount. - These additions enhance the action framework's capabilities for managing badge counts.
- Added execution logic for CheckPermission in the action framework. - Updated ScreenController to remove deprecated permission handling. - Included CheckPermission in ActionType within ActionInvokable.
- Included ActionType.sendVerificationCode, ActionType.validateVerificationCode, and ActionType.resendVerificationCode in ActionInvokable. - These additions enhance the action framework's capabilities for user verification.
- Included ActionType.bluetoothStartScan, ActionType.bluetoothConnect, ActionType.bluetoothDisconnect, ActionType.bluetoothSubscribeCharacteristic, and ActionType.bluetoothUnsubscribeCharacteristic in ActionInvokable. - These additions enhance the action framework's capabilities for Bluetooth interactions.
TheNoumanDev
approved these changes
May 7, 2025
| void didUpdateWidget(covariant BaseTextInput oldWidget) { | ||
| super.didUpdateWidget(oldWidget); | ||
| widget.controller.inputFieldAction = this; | ||
| widget._controller._taggerController = oldWidget._controller._taggerController; |
Member
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you please add the comment above it, why we reassign the controller, so it is easier to debug for the next time.
add multiple triggers
[Fix] `openAppSettings` was not working on iOS to open wifi target
Overview: This PR adds range slider functionality to the existing EnsembleSlider widget, allowing users to select both a lower and upper value within a specified range. This implementation preserves all existing functionality while adding new capabilities with minimal API changes. Features Toggle between single-value and range-slider modes using the enableRange property Support for setting start and end values individually or via a single initialRangeValues property Compatibility with existing styling composites (track, thumb, tick marks, overlay, value indicators) Uses the existing onChange event handler for both slider types for API consistency
- ensemble@1.1.50
chore(release): publish packages
Add clear() method
add multiple triggers
Merged
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.
TaggerControllerin TagInput wasn't being initialized.Fixed it.