floaty_chatheads_platform_interface 2.0.0
floaty_chatheads_platform_interface: ^2.0.0 copied to clipboard
Platform interface for floaty_chatheads. Defines the abstract contract, configuration models, and method-channel fallback shared by Android and iOS implementations.
Changelog #
2.0.0 #
Released as part of the floaty_chatheads 2.0 line. See the main package CHANGELOG for the full migration guide.
✨ New shared helpers #
FloatyChannels— single source of truth for the canonical messenger channel name (ni.devotion.floaty_head/messenger). The Dart side, the Android Kotlin service, and the iOS Swift plugin all reference this constant.ChatHeadConfigResolver— extracts default-value resolution (size-preset application, snap-config fallbacks, notification visibility default) from the Android and iOS Dart shims. Both platform packages now call the resolver, eliminating ~30 lines of duplicated null-coalescing logic.
📝 Documented platform differences #
ChatHeadAssetsdocuments that asset overrides are honored on Android only; the iOS chathead is a Flutter view, so app authors render icons inside the overlay entry point.
⚙ Toolchain (BREAKING) #
- Dart SDK floor
^3.0.0, Flutter floor>=3.10.0— matches the rest of the federated set; picked as the bare minimum the Dart code requires.
1.0.5 #
✨ Enhancements #
- Added
updateChatHeadIcon()to the platform interface. New abstract method that pushes raw RGBA pixel data to the native layer, enabling real-time animated chathead icons driven from Dart. - Added matching implementation in
MethodChannelFloatyChatheads.
📦 Dependencies #
- Removed
package:metadependency -- replaced withpackage:flutter/foundation.dartimports across all model files.
1.0.4 #
✨ Enhancements #
- Added
autoLaunchOnBackgroundtoChatHeadConfig. Whentrue, the chathead is automatically shown when the app goes to the background and dismissed when the app returns to the foreground. - Added
persistOnAppClosetoChatHeadConfig. Whentrue, the overlay service usesSTART_STICKYand survives after the main app is killed. Whenfalse, the service stops itself on disconnect.
1.0.3 #
✨ Enhancements #
- Added
NotificationConfig.descriptionfield. When set, the foreground-service notification uses a custom title and body instead of the default"<title> is running"format.
1.0.1 #
- Documentation and metadata updates.
1.0.0 #
🎉 Initial Release #
FloatyChatheadsPlatformabstract interface with 13 platform methods.ChatHeadConfig— full configuration model with theming, size presets, snap behavior, entrance animations, and debug mode.ChatHeadTheme— badge colors, bubble border, shadow, close tint, and overlay palette.ContentSizePreset—compact,card,halfScreen,fullScreen.AddChatHeadConfig,OverlayPosition,OverlayFlag,SnapEdge,EntranceAnimation,NotificationVisibilitymodels.MethodChannelFloatyChatheadsfallback implementation.- VGV-style
{@template}/{@macro}documentation on all public APIs.