intercom_flutter_web 1.1.5 intercom_flutter_web: ^1.1.5 copied to clipboard
Web platform implementation of intercom_flutter
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
/// App for testing
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return Directionality(
textDirection: TextDirection.ltr,
child: Text('Testing... Look at the console output for results!'),
);
}
}