How to get all mobile measurements in Android using dart and flutter - flutter

I tried to create an app the get all Device Information as the below link in git hub:
https://github.com/MHarooney/All-Device-Information
As I need to get these types of info below images:
and those Infos I get it when dialing this code *#*#4636#*#*, and I get this screen to access the Phone information as the below Image:
I searched a lot and can't find plugins give me this information using flutter and dart
I hope someone could help me to solve this!!
Edited:
Overall I want to create something like Open Signal application that access the mobile network or sim network as the below link:
https://play.google.com/store/apps/details?id=com.staircase3.opensignal&gl=NL

Why would you need the measurement of all android devices? Android devices have wide spread of screen sizes instead you can use mediaquery() widget to set multi layout screens instead of inputting raw width and height

Related

How to Capture multiple screen screenshot in flutter desktop?

I am looking for a way or package that can help me to capture multiple screen.
I have been through some packages that supports single fullscreen screenshot but I want to capture all the screens connected.
Unfortunately, Flutter does not provide an API for capturing screenshots of multiple screens that are connected to the same device. To capture screenshots of multiple screens, you would need to use an operating system-level tool or an external screen capture software.
Unfortunately you cant do it in flutter you have to write native code to the platform you target, because flutter only can give access to app level not system level
i guess you could use
https://github.com/leanflutter/keypress_simulator
to simulate Windows key + Print Screen key

How to determine country code in Flutter web

I need to assess which country the user is in. In Flutter android/iOS I usually would have used dart:io and collected the info by checking Platform.localeName... but this seems not to work in flutter web as the io package is not supported in web. Do I need to determine it by ip address? Is that possible? Any alternative suggestions of how to get the country code would be grateful

Beacon and Flutter can works?

I have a question, I want to buy a beacon and send the signal from the beacon to the flutter application and then do something.
Is that possible with flutter?
Thank you very much!
Yes, it is possible. I tried https://pub.dev/packages/flutter_beacon for myself interest once when covid-19 declared a pandemic by WHO to solve Handshake problem.
I was converting the existing device as a beacon and then used "flutter_beacon" package to get the list of beacons in a defined region. So yeah, it is possible to do it flutter also. You can customize it as per your need further. But basic things are possible like getting the list of beacons in reason.
If asked whether or not, the answer is yes. but there are some obstacles or limits, such as Bluetooth will not scan in the background as in this article, this is indeed from Android and IOS which causes the limit. I am also working on this project, but there are still some problems as I have described above.
This link also can help Beacon scanning in background - Android O

How can i interchange widget's displaying data through other connected flutter apps

I am building a card game in which the card stack depends on 4 flutter friend apps which will be displayed on the screen. I know this is not a very technical question but still is for me i am learning this thing. I have searched all over the internet cannot find the solution, Just give me anything and I'll study and apply that.
It's hard to understand what you're trying to achieve, but maybe Firestore will help?
It allows you to synchronize your app's data between different devices on internet.

ngCordova - Get network name

I need for my app, to get the wifi's exact network name. With this name, the app will generate a set of results completely diferent of the results generated outside this network.
I need a solution for both Android and iOS.
At Cordova's docs I can't find any alternative for this.
Any advice ?