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