callbundle_ios 1.0.9
callbundle_ios: ^1.0.9 copied to clipboard
iOS implementation of the CallBundle plugin using CallKit. Handles PushKit, audio session, and missed call notifications inside the plugin.
example/lib/main.dart
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('CallBundle iOS Example'),
),
body: const Center(
child: Text('CallBundle iOS plugin loaded.'),
),
),
);
}
}