Skip to content

Commit

Permalink
Removed web package (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
abedelaziz-deriv authored Jul 26, 2024
1 parent 800cb24 commit db1a8b0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 14 deletions.
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

0 comments on commit db1a8b0

Please sign in to comment.