blob: dd790a73556d66fe79c7f881df07384afa57bd14 [file] [log] [blame]
Michael Goderbauer1b915822018-01-12 15:09:55 -08001@echo off
2REM Copyright 2017 The Chromium Authors. All rights reserved.
3REM Use of this source code is governed by a BSD-style license that can be
4REM found in the LICENSE file.
5
6TITLE Flutter Console
Michael Goderbauer1b915822018-01-12 15:09:55 -08007
8echo.
9echo ######## ## ## ## ######## ######## ######## ########
10echo ## ## ## ## ## ## ## ## ##
11echo ## ## ## ## ## ## ## ## ##
12echo ###### ## ## ## ## ## ###### ########
13echo ## ## ## ## ## ## ## ## ##
14echo ## ## ## ## ## ## ## ## ##
15echo ## ######## ####### ## ## ######## ## ##
16echo.
17echo.
18
19echo WELCOME to the Flutter Console.
20echo ================================================================================
21echo.
22echo Use the console below this message to interact with the "flutter" command.
23echo Run "flutter doctor" to check if your system is ready to run Flutter apps.
24echo Run "flutter create <app_name>" to create a new Flutter project.
25echo.
26echo Run "flutter help" to see all available commands.
27echo.
28echo Want to use an IDE to interact with Flutter? https://flutter.io/ide-setup/
29echo.
30echo Want to run the "flutter" command from any Command Prompt or PowerShell window?
31echo Add Flutter to your PATH: https://flutter.io/setup-windows/#update-your-path
32echo.
33echo ================================================================================
34
35REM "%~dp0" is the directory of this file including trailing backslash
36SET PATH=%~dp0bin;%PATH%
37
38CALL cmd /K "@echo off & cd %USERPROFILE% & echo on"