[Solved] I need to implement a flutter app, when 2 phones come near it must alert the 2 phones [closed]


You can use the location of the device and store the lat and long of the device in the backend(probably AWS if you are using it!).

Every device registers to your app will be sending its realtime lat and long to your backend.

You can have some sort of computation or graph-based analysis in the backend and check if two devices have a really small difference in their location parameters. If so, then you can use SNS(Available in AWS) and Firebase, to send a push notification, to notify the user.

3

solved I need to implement a flutter app, when 2 phones come near it must alert the 2 phones [closed]