Flutter wrapper for Intercom Android and iOS projects. Currently only supports registering users and opening Intercom messenger.
Import package:intercom_flutter/intercom_flutter.dart
and use the methods in Intercom
class.
Example:
import 'package:intercom_flutter/intercom_flutter.dart';
void main() async {
await Intercom.initialize('appIdHere', iosApiKey: 'iosKeyHere', androidApiKey: 'androidKeyHere');
runApp(App());
}
class App extends StatelessWidget {
@override
Widget build(BuildContext context) {
return FlatButton(
child: Text('Open Intercom'),
onPressed: () async {
await Intercom.displayMessenger();
});
}
}
See Intercom Android and iOS package documentation for more information.
Permissions:
<uses-permission android:name="android.permission.INTERNET"/>
Optional permissions:
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.MANAGE_DOCUMENTS"/>
Make sure that you have a NSPhotoLibraryUsageDescription
entry in your Info.plist
.
intercom_flutter
because of the name clash with Intercom pod2.0.0-dev.28.0
initialize
, registerIdentifiedUser
, registerUnidentifiedUser
, logout
, setLauncherVisibility
, displayMessenger
on both Android and iOSexample/lib/main.dart
import 'package:flutter/material.dart';
import 'package:intercom_flutter/intercom_flutter.dart';
void main() async {
await Intercom.initialize('appId',
androidApiKey: 'androidApiKey', iosApiKey: 'iosApiKey');
runApp(App());
}
class App extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
home: new Scaffold(
appBar: new AppBar(
title: const Text('Intercom example app'),
),
body: new Center(
child: new FlatButton(
onPressed: () {
Intercom.displayMessenger();
},
child: Text('Show messenger')),
),
),
);
}
}
Add this to your package's pubspec.yaml file:
dependencies:
intercom_flutter: ^1.0.5
You can install packages from the command line:
with Flutter:
$ flutter packages get
Alternatively, your editor might support flutter packages get
.
Check the docs for your editor to learn more.
Now in your Dart code, you can use:
import 'package:intercom_flutter/intercom_flutter.dart';
Version | Uploaded | Documentation | Archive |
---|---|---|---|
1.0.10 | Nov 22, 2018 |
|
|
1.0.9 | Nov 22, 2018 |
|
|
1.0.8 | Oct 12, 2018 |
|
|
1.0.7 | Sep 4, 2018 |
|
|
1.0.6 | Aug 21, 2018 |
|
|
1.0.5 | Aug 21, 2018 |
|
|
1.0.4 | Aug 21, 2018 |
|
|
1.0.3 | Aug 17, 2018 |
|
|
1.0.2 | Aug 17, 2018 |
|
|
1.0.1 | Aug 17, 2018 |
|
|
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
83
|
Health:
Code health derived from static analysis.
[more]
|
99
|
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
80
|
Overall:
Weighted score of the above.
[more]
|
87
|
We analyzed this package on Feb 14, 2019, and provided a score, details, and suggestions below. Analysis was completed with status completed using:
Detected platforms: Flutter
References Flutter, and has no conflicting libraries.
Document public APIs. (-1 points)
14 out of 14 API elements have no dartdoc comment.Providing good documentation for libraries, classes, functions, and other API elements improves code readability and helps developers find and use your API.
The package description is too short. (-20 points)
Add more detail to the description
field of pubspec.yaml
. Use 60 to 180 characters to describe the package, what it does, and its target use case.
Package | Constraint | Resolved | Available |
---|---|---|---|
Direct dependencies | |||
Dart SDK | >=2.0.0-dev.28.0 <3.0.0 | ||
flutter | 0.0.0 | ||
Transitive dependencies | |||
collection | 1.14.11 | ||
meta | 1.1.6 | 1.1.7 | |
sky_engine | 0.0.99 | ||
typed_data | 1.1.6 | ||
vector_math | 2.0.8 | ||
Dev dependencies | |||
flutter_test | |||
mockito | ^3.0.0 |