mobile_sdk 0.0.4 copy "mobile_sdk: ^0.0.4" to clipboard
mobile_sdk: ^0.0.4 copied to clipboard

A flutter plugin for incoming and outgoing VoIP calls using SIP integration.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:mobile_sdk/mobile_sdk.dart';
import 'package:example/services/sip_config.dart';

void main() {
  Get.put<SipService>(SipService(sipConfig: sipConfig));

  runApp(const MyApp());
}

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: App(),
    );
  }
}
3
likes
130
points
71
downloads

Publisher

verified publisherdial-afrika.com

Weekly Downloads

A flutter plugin for incoming and outgoing VoIP calls using SIP integration.

Documentation

API reference

License

MIT (license)

Dependencies

auto_route, cherry_toast, flutter, flutter_foreground_task, flutter_webrtc, get, google_fonts, logger, sip_ua

More

Packages that depend on mobile_sdk