Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions packages/devtools_app/lib/src/framework/home_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ class _ConnectInputState extends State<ConnectInput> with BlockingActionMixin {
height: defaultTextFieldHeight,
width: scaleByFontFactor(350.0),
child: DevToolsClearableTextField(
labelText: 'VM service URL',
labelText: 'URL',
onSubmitted:
actionInProgress ? null : (str) => unawaited(_connect()),
autofocus: true,
Expand All @@ -221,7 +221,7 @@ class _ConnectInputState extends State<ConnectInput> 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,
),
Expand All @@ -236,10 +236,7 @@ class _ConnectInputState extends State<ConnectInput> 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,
],
Expand Down