blob: 24d89ae41aa98337e1668f91ac6353c4e0573e27 [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
7COLOR 3f
8
9echo.
10echo ######## ## ## ## ######## ######## ######## ########
11echo ## ## ## ## ## ## ## ## ##
12echo ## ## ## ## ## ## ## ## ##
13echo ###### ## ## ## ## ## ###### ########
14echo ## ## ## ## ## ## ## ## ##
15echo ## ## ## ## ## ## ## ## ##
16echo ## ######## ####### ## ## ######## ## ##
17echo.
18echo.
19
20echo WELCOME to the Flutter Console.
21echo ================================================================================
22echo.
23echo Use the console below this message to interact with the "flutter" command.
24echo Run "flutter doctor" to check if your system is ready to run Flutter apps.
25echo Run "flutter create <app_name>" to create a new Flutter project.
26echo.
27echo Run "flutter help" to see all available commands.
28echo.
29echo Want to use an IDE to interact with Flutter? https://flutter.io/ide-setup/
30echo.
31echo Want to run the "flutter" command from any Command Prompt or PowerShell window?
32echo Add Flutter to your PATH: https://flutter.io/setup-windows/#update-your-path
33echo.
34echo ================================================================================
35
36REM "%~dp0" is the directory of this file including trailing backslash
37SET PATH=%~dp0bin;%PATH%
38
39CALL cmd /K "@echo off & cd %USERPROFILE% & echo on"