v1.0.1phone_state_handler
इस प्लगइन के उपयोग से आप तेजी से और आसानी से यह जान सकते हैं कि आपका Android या iOS डिवाइस कॉल प्राप्त कर रहा है या नहीं, और कॉल की स्थिति के बारे में भी जान सकते हैं।
इस प्लगइन के उपयोग से आप तेजी से और आसानी से यह जान सकते हैं कि आपका Android या iOS डिवाइस कॉल प्राप्त कर रहा है या नहीं, और कॉल की स्थिति के बारे में भी जान सकते हैं।
{"sdk":"flutter"}{"sdk":"flutter"}^4.0.0यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
This plugin modified from phone_state
This plugin allows you to know quickly and easily if your Android or iOS device is receiving a call and to know the status of the call.
dependencies:
flutter:
sdk: flutter
phone_state: 1.0.1
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.READ_CALL_LOG" />
Warning: Adding
READ_CALL_LOGpermission, your app will be removed from the Play Store if you don't have a valid reason to use it. Read more. But if you don't add it, you will not be able to know caller's number.
StreamBuilder<PhoneState>(
initialData: PhoneState.nothing(),
stream: PhoneState.stream,
...
)
Write me in the GitHub issues the new features you need and, if they are approved of course, I will implement them as soon as I can.