Skip to content
Open
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
2 changes: 1 addition & 1 deletion .flutter-plugins-dependencies
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"webview_flutter_wkwebview","path":"C:\\\\Users\\\\hp\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\webview_flutter_wkwebview-2.9.5\\\\","native_build":true,"dependencies":[]}],"android":[{"name":"webview_flutter_android","path":"C:\\\\Users\\\\hp\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\webview_flutter_android-2.10.4\\\\","native_build":true,"dependencies":[]}],"macos":[],"linux":[],"windows":[],"web":[]},"dependencyGraph":[{"name":"webview_flutter","dependencies":["webview_flutter_android","webview_flutter_wkwebview"]},{"name":"webview_flutter_android","dependencies":[]},{"name":"webview_flutter_wkwebview","dependencies":[]}],"date_created":"2024-07-17 12:08:49.848895","version":"3.22.2"}
{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"webview_flutter_wkwebview","path":"C:\\\\Users\\\\hp\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\webview_flutter_wkwebview-2.9.5\\\\","native_build":true,"dependencies":[]}],"android":[{"name":"webview_flutter_android","path":"C:\\\\Users\\\\hp\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\webview_flutter_android-2.10.4\\\\","native_build":true,"dependencies":[]}],"macos":[],"linux":[],"windows":[],"web":[]},"dependencyGraph":[{"name":"webview_flutter","dependencies":["webview_flutter_android","webview_flutter_wkwebview"]},{"name":"webview_flutter_android","dependencies":[]},{"name":"webview_flutter_wkwebview","dependencies":[]}],"date_created":"2024-07-25 16:24:21.179051","version":"3.22.2"}
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ migrate_working_dir/
/pubspec.lock
**/doc/api/
.dart_tool/
build/
build/
Empty file added .pubignore
Empty file.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.1.4
## 1.0.0


* Can help in calling the KIPPs AI ChatBot in a flutter application.
Expand Down
4 changes: 2 additions & 2 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:flutter/material.dart';
import 'package:imm_flutter/imm_flutter.dart';
import 'package:kipps_chatbot/kipps_chatbot.dart';

void main() {
runApp(const MyApp());
Expand Down Expand Up @@ -33,7 +33,7 @@ class _MyHomePageState extends State<MyHomePage> {
Widget build(BuildContext context) {
return const Scaffold(
floatingActionButton:
ChatbotIntegration(chatbotId: '868aafc1-74b3-4c44-93ec-8fac3b4b7cf3'),
ChatbotIntegration(chatbotId: '<your chaatbotId>'),
);
}
}
4 changes: 2 additions & 2 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,13 @@ packages:
url: "https://pub.dev"
source: hosted
version: "4.0.2"
imm_flutter:
kipps_chatbot:
dependency: "direct main"
description:
path: ".."
relative: true
source: path
version: "0.1.1"
version: "1.0.0"
leak_tracker:
dependency: transitive
description:
Expand Down
4 changes: 3 additions & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ dependencies:
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.6
imm_flutter:
# imm_flutter:
# path: ../
kipps_chatbot:
path: ../

dev_dependencies:
Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: imm_flutter
description: "imm_flutter is a Flutter package that simplifies the integration of KIPPs AI chatbot into your applications."
name: kipps_chatbot
description: "kipps_chatbot is a Flutter package that simplifies the integration of KIPPs AI chatbot into your applications."

version: 0.1.4
version: 1.0.0
homepage: https://github.com/KIPPS-AI/kipps-flutter.git

environment:
Expand Down