We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23e30dc commit 8459d88Copy full SHA for 8459d88
sdk/python/packages/flet/src/flet/cli/commands/create.py
@@ -3,6 +3,7 @@
3
4
from flet.cli.commands.base import BaseCommand
5
from flet_core.utils import slugify
6
+from colorama import Fore, Style
7
8
9
class Command(BaseCommand):
@@ -64,3 +65,9 @@ def handle(self, options: argparse.Namespace) -> None:
64
65
defaults=True,
66
) as worker:
67
worker.run_copy()
68
+ print(Fore.LIGHTGREEN_EX + "\nDone. Now run:\n")
69
+ print(Style.RESET_ALL)
70
+ print(Fore.CYAN + "cd", end=" ")
71
+ print(Fore.WHITE + project_name, end="\n")
72
+ print(Fore.CYAN + "flet run")
73
0 commit comments