flutter_voip_kit_osato07 0.1.2 copy "flutter_voip_kit_osato07: ^0.1.2" to clipboard
flutter_voip_kit_osato07: ^0.1.2 copied to clipboard

A comprehensive VoIP kit for Flutter enabling iOS CallKit/PushKit and Android ConnectionService/FCM.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_voip_kit_osato07/flutter_voip_kit.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
    FlutterVoipKit().initialize(
      onEvent: (event) {
        print("VoIP Event: ${event.event}");
      },
    );
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('VoIP Kit Example')),
        body: const Center(child: Text('VoIP Kit is initialized')),
      ),
    );
  }
}
0
likes
160
points
--
downloads

Publisher

unverified uploader

Weekly Downloads

A comprehensive VoIP kit for Flutter enabling iOS CallKit/PushKit and Android ConnectionService/FCM.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

firebase_core, firebase_messaging, flutter, flutter_callkit_incoming, plugin_platform_interface, uuid

More

Packages that depend on flutter_voip_kit_osato07

Packages that implement flutter_voip_kit_osato07