I´am just starting flutter and wanted to ask for a posibility of tracking variable from another users interface
Can I somehow access and pass simple int variable changess via wifi F.E. or do i need to use some backend like firebase.
Thank you !
I´am just starting flutter and wanted to ask for a posibility of tracking variable from another users interface
Can I somehow access and pass simple int variable changess via wifi F.E. or do i need to use some backend like firebase.
Thank you !
Copyright © 2021 Jogjafile Inc.
You could probably take a look at UDP i.e. User Datagram Protocol. The UDP protocol allows the computer applications to send the messages in the form of datagrams from one machine/device to another over the Internet Protocol.
In Flutter there is a package which can allow you to do this, you can check it out here Link to package and explore the possibilities of what you require.
The below code shows an example of the how the package works: