5

I am working on a flutter application that connects to the MQTT client on the desktop it is opened on. I want to dynamically get the host name of the desktop and connect to it instead of the user having to enter it manually. Thanks in advance.

1 Answer 1

7

https://api.flutter.dev/flutter/dart-io/Platform-class.html

import 'dart:io' show Platform, stdout;

void main() {
  // Get the hostname as a string.
  String hostname = Platform.localHostname;
  
}
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.