0

I've been studying Flutter and I'm really enjoying it.

I want to make an application that identifies the phone number when receiving a call, is this possible in Flutter?

Thanks

Alan
  • 13
  • 2
  • Glad you are enjoying flutter! In order for us to help you we need more information such as example code and more description about your problem. Thanks! – Gabe Jun 23 '20 at 02:51

1 Answers1

0

It seems possible though also quite difficult. There isn't official support for this and there aren't any packages that do what you need. The only way that I see is to create platform-specific implementations and use platform channels.

Possible android implementation

Possible iOS implementation

Platform channels

Christopher Moore
  • 15,626
  • 10
  • 42
  • 52