blob: e88b8e7f15aca18f3063a3138e3710b303505368 [file] [log] [blame]
Ian Hickson449f4a62019-11-27 15:04:02 -08001@ECHO off
2REM Copyright 2014 The Flutter Authors. All rights reserved.
Michael Goderbauer1b915822018-01-12 15:09:55 -08003REM 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.
Ian Hickson449f4a62019-11-27 15:04:02 -08009echo ######## ## ## ## ######## ######## ######## ########
10echo ## ## ## ## ## ## ## ## ##
11echo ## ## ## ## ## ## ## ## ##
12echo ###### ## ## ## ## ## ###### ########
13echo ## ## ## ## ## ## ## ## ##
14echo ## ## ## ## ## ## ## ## ##
15echo ## ######## ####### ## ## ######## ## ##
Michael Goderbauer1b915822018-01-12 15:09:55 -080016echo.
17echo.
18
19echo WELCOME to the Flutter Console.
Ian Hickson449f4a62019-11-27 15:04:02 -080020echo ===============================================================================
Michael Goderbauer1b915822018-01-12 15:09:55 -080021echo.
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.
Tim Sneath52918972019-04-05 11:39:30 -070028echo Want to use an IDE to interact with Flutter? https://flutter.dev/ide-setup/
Michael Goderbauer1b915822018-01-12 15:09:55 -080029echo.
30echo Want to run the "flutter" command from any Command Prompt or PowerShell window?
Tim Sneath52918972019-04-05 11:39:30 -070031echo Add Flutter to your PATH: https://flutter.dev/setup-windows/#update-your-path
Michael Goderbauer1b915822018-01-12 15:09:55 -080032echo.
Ian Hickson449f4a62019-11-27 15:04:02 -080033echo ===============================================================================
Michael Goderbauer1b915822018-01-12 15:09:55 -080034
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"