Skip to content
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

Removed web package #4

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.1

* Removed web package.

## 1.0.0

* Initial release of the plugin.
8 changes: 0 additions & 8 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,6 @@ packages:
url: "https://pub.dev"
source: hosted
version: "2.1.4"
web:
dependency: transitive
description:
name: web
sha256: d43c1d6b787bf0afad444700ae7f4db8827f701bc61c255ac8d328c6f4d52062
url: "https://pub.dev"
source: hosted
version: "1.0.0"
sdks:
dart: ">=3.4.3 <4.0.0"
flutter: ">=3.3.0"
8 changes: 4 additions & 4 deletions lib/src/live_chat_platform_interface.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,18 @@ abstract class LiveChatPlatform extends PlatformInterface {
String? groupId,
Map<String, String>? customParameters,
}) {
throw UnimplementedError('openChatView() has not been implemented.');
throw UnimplementedError('openChatWindow() has not been implemented.');
}

Future<void> closeChatWindow() {
throw UnimplementedError('closeChatView() has not been implemented.');
throw UnimplementedError('closeChatWindow() has not been implemented.');
}

Future<void> clearChatSession() {
throw UnimplementedError('clearChatView() has not been implemented.');
throw UnimplementedError('clearChatSession() has not been implemented.');
}

Stream<dynamic>? getLiveChatEventsStream() {
throw UnimplementedError('getEventsStream() has not been implemented.');
throw UnimplementedError('getLiveChatEventsStream() has not been implemented.');
}
}
3 changes: 1 addition & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: live_chat_plus
description: "A Flutter plugin to bring LiveChat functionality to Flutter"
version: 1.0.0
version: 1.0.1
repository: https://github.com/deriv-com/live-chat
issue_tracker: https://github.com/deriv-com/live-chat/issues
homepage: https://github.com/deriv-com/live-chat
Expand All @@ -14,7 +14,6 @@ dependencies:
sdk: flutter
flutter_web_plugins:
sdk: flutter
web: ^1.0.0
js: ^0.7.1
plugin_platform_interface: ^2.1.8

Expand Down
Loading