diff --git a/packages/devtools_app/lib/src/framework/home_screen.dart b/packages/devtools_app/lib/src/framework/home_screen.dart index fafd7960e3e..540cf09bdd5 100644 --- a/packages/devtools_app/lib/src/framework/home_screen.dart +++ b/packages/devtools_app/lib/src/framework/home_screen.dart @@ -203,7 +203,7 @@ class _ConnectInputState extends State with BlockingActionMixin { height: defaultTextFieldHeight, width: scaleByFontFactor(350.0), child: DevToolsClearableTextField( - labelText: 'VM service URL', + labelText: 'URL', onSubmitted: actionInProgress ? null : (str) => unawaited(_connect()), autofocus: true, @@ -221,7 +221,7 @@ class _ConnectInputState extends State with BlockingActionMixin { Padding( padding: const EdgeInsets.symmetric(vertical: densePadding), child: Text( - '(e.g., http://127.0.0.1:12345/auth_code=...)', + '(e.g., http://127.0.0.1:12345/auth_code=... or ws://...)', textAlign: TextAlign.start, style: Theme.of(context).textTheme.bodySmall, ), @@ -236,10 +236,7 @@ class _ConnectInputState extends State with BlockingActionMixin { children: [ Text('Connect to a Running App', style: textTheme.titleMedium), const SizedBox(height: denseRowSpacing), - Text( - 'Enter a URL to a running Dart or Flutter application', - style: textTheme.bodySmall, - ), + Text('Enter a Dart VM Service URL', style: textTheme.bodySmall), const SizedBox(height: denseSpacing), connectorInput, ],