app_call_button 0.0.1
app_call_button: ^0.0.1 copied to clipboard
Calling in App Flutter.
APP CALL BUTTON BY TriAnh Solutions #

Created by: TRAN THANH TRA
Platform Support:
| Android | iOS | |
|---|---|---|
| ✅ | ✅ |
Add app_call_button as a dependency in your pubspec.yaml file.
Additional platform/OS support from the other community
iOS Setup #
Add the following entries to your Info.plist file located at <project root>/ios/Runner/Info.plist:
<key>NSMicrophoneUsageDescription</key>
<string>App Name muốn truy cập micro để thực hiện cuộc gọi tổng đài</string>
<key>NSCameraUsageDescription</key>
<string>App Name muốn truy cập camera để thực hiện cuộn gọi tổng đài</string>
Android Setup #
Ensure the following permission is present in your Android Manifest file, located in
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
Usage
Import package and use:
import 'package:app_call_button/app_call_button.dart';
AppCallButton(
callTo: '0123456789',
callToAlias: 'Customer',
enableKeyboard: true,
);
If you need to use a Bluetooth device, please add:
<uses-permission android:name="android.permission.BLUETOOTH" android:maxSdkVersion="30" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" android:maxSdkVersion="30" />
Features
•Call button for Flutter apps
•Works on Android and iOS
•Supports audio calls
•Can run in foreground service (background call support)
•Easy to integrate into any Flutter project
MIT License
Copyright (c) 2025 TRAN THANH TRA
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.