Skip to content

Commit

Permalink
Simplify instruction for running new projects
Browse files Browse the repository at this point in the history
  • Loading branch information
DanTup committed Mar 1, 2022
1 parent 17f353c commit 457b11b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/extension/user_prompts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,9 @@ function handleFlutterWelcome(workspaceFolder: vs.WorkspaceFolder, triggerData:
const entryFile = path.join(fsPath(workspaceFolder.uri), "lib/main.dart");
openFile(entryFile);
if (triggerData?.sample)
vs.window.showInformationMessage(`${triggerData.sample} sample ready! Connect a device and press F5 to run.`);
vs.window.showInformationMessage(`${triggerData.sample} sample ready! Press F5 to start running.`);
else
vs.window.showInformationMessage("Your Flutter project is ready! Connect a device and press F5 to start running.");
vs.window.showInformationMessage("Your Flutter project is ready! Press F5 to start running.");
}

function handleDartWelcome(workspaceFolder: vs.WorkspaceFolder, template: DartProjectTemplate) {
Expand Down

0 comments on commit 457b11b

Please sign in to comment.