From 115f3334394954ce2fd9f745571d31f970a6d88b Mon Sep 17 00:00:00 2001 From: Filip Hracek Date: Thu, 9 Nov 2023 14:35:15 +0100 Subject: [PATCH] Remove outdated instructions --- README.md | 25 ++++--------------------- templates/basic/README.md | 20 -------------------- templates/card/README.md | 21 --------------------- 3 files changed, 4 insertions(+), 62 deletions(-) diff --git a/README.md b/README.md index 6028c8d..4aaa67a 100644 --- a/README.md +++ b/README.md @@ -57,32 +57,16 @@ The projects in this repository are divided into two broad categories: 2. `cd` into the project you are interested in. For example: ```shell - cd templates/card_game + cd templates/card ``` (Alternatively, you can copy the contents of a project to somewhere else, and change to that directory.) -3. Let Flutter create the platform subdirectories: - - ```shell - flutter create . - ``` - - (If you have changed the name of the project's directory to something else, - you will need to tell the Flutter tool the original project name - with something like `flutter create --project-name card_game .`.). - - - -4. (Optional) Rename the project with the +3. (Optional) Rename the project with the [`rename` tool](https://pub.dev/packages/rename). -5. Open the project in your favorite editor and enjoy. +4. Open the project in your favorite editor and enjoy. ## Interested in contributing? @@ -101,5 +85,4 @@ techniques for one of your own apps, try one of these resources: * [StackOverflow](https://stackoverflow.com/questions/tagged/flutter) If you run into a bug in one of the samples, please file an issue in the -[`flutter/games` issue tracker](https://github.com/flutter/games/issues). - +[`flutter/flutter` issue tracker](https://github.com/flutter/flutter/issues). diff --git a/templates/basic/README.md b/templates/basic/README.md index dbc158e..e0c3f1b 100644 --- a/templates/basic/README.md +++ b/templates/basic/README.md @@ -15,26 +15,6 @@ there are resources ready for you at [flutter.dev/games](https://flutter.dev/games). -# Getting started - -Clone this project and run the following command in its root directory: - -```terminal -flutter create . --project-name basic -``` - -This will create the necessary platform files, such as `ios/`, `android/`, -`web/`, `macos/`, `linux/` or `windows/`, depending on your installation of Flutter. - -After this, the game compiles and works out of the box. It comes with things -like a main menu, a router, a settings screen, and audio. -When building a new game, this is likely everything you first need. - -When you're ready to enable more advanced integrations, -there are recipes and codelabs for you ready at -[flutter.dev/games](https://flutter.dev/games). - - # Development To run the app in debug mode: diff --git a/templates/card/README.md b/templates/card/README.md index b5f64c9..208cc37 100644 --- a/templates/card/README.md +++ b/templates/card/README.md @@ -17,26 +17,6 @@ there are resources ready for you at [flutter.dev/games](https://flutter.dev/games). -# Getting started - -Clone this project and run the following command in its root directory: - -```terminal -flutter create . --project-name card -``` - -This will create the necessary platform files, such as `ios/`, `android/`, -`web/`, `macos/`, `linux/` or `windows/`, depending on your installation of Flutter. - -After this, the game compiles and works out of the box. It comes with things -like a main menu, a router, a settings screen, and audio. -When building a new game, this is likely everything you first need. - -When you're ready to enable more advanced integrations, -there are recipes and codelabs for you ready at -[flutter.dev/games](https://flutter.dev/games). - - # Development To run the app in debug mode: @@ -60,7 +40,6 @@ lib ├── app_lifecycle ├── audio ├── game_internals -├── level_selection ├── main_menu ├── play_session ├── player_progress