call_logs_plus 0.0.2 copy "call_logs_plus: ^0.0.2" to clipboard
call_logs_plus: ^0.0.2 copied to clipboard

A Flutter plugin for accessing call logs, created for educational and learning purposes only. Not intended for production or commercial use.

example/lib/main.dart

import 'package:call_logs_plus/logs.dart';
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:flutter/services.dart';

import 'clog.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();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home:
      CallLogsPage()
    );
  }
}
3
likes
0
points
19
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter plugin for accessing call logs, created for educational and learning purposes only. Not intended for production or commercial use.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_web_plugins, plugin_platform_interface, web

More

Packages that depend on call_logs_plus

Packages that implement call_logs_plus