callplugin

A new Flutter project.

Getting Started

This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.

For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

My Flutter App

My Flutter App is a simple app built using Flutter. It allows users to get call detail.

Getting Started

To use this app, simply follow these steps:

  1. Clone the repository
  2. Run flutter pub get to install dependencies
  3. Run flutter run to start the app
  4. Add Permission in Manifest file CALL_PHONE, READ_CALL_LOG

Features

  • User can direct call using openDial() method PermissionStatus readCallDetail = await Permission.phone.request(); if (readCallDetail == PermissionStatus.granted) { _callpluginPlugin.openDial(_phoneNumberController.text); } else { print("Not Granted Granted"); }

  • User can get call detail in string like Future

       setState(() {
              _platformVersion = platformVersion;
       });
    

    }

Contributing

We welcome contributions! To contribute:

  1. Fork the repository
  2. Create a new branch
  3. Make your changes
  4. Submit a Pull Request

License

This project is licensed under the MIT License - see the LICENSE.md file for details.