intercom_flutter_web 1.1.1 copy "intercom_flutter_web: ^1.1.1" to clipboard
intercom_flutter_web: ^1.1.1 copied to clipboard

Platformweb

Web platform implementation of intercom_flutter

example/lib/main.dart

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!'),
    );
  }
}