From 87351bd9583682146675e5c17eb6fee19bf42d85 Mon Sep 17 00:00:00 2001 From: Michael Thomsen Date: Wed, 13 Jun 2018 13:40:55 -0700 Subject: [PATCH] Fix outdated link for how to edit plugin code (#18069) * Fix readme link to plugin edit instructions * Fix flutter tools link --- packages/flutter_tools/lib/src/commands/create.dart | 2 +- packages/flutter_tools/templates/plugin/README.md.tmpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/flutter_tools/lib/src/commands/create.dart b/packages/flutter_tools/lib/src/commands/create.dart index 01a32590ba..04e0000194 100644 --- a/packages/flutter_tools/lib/src/commands/create.dart +++ b/packages/flutter_tools/lib/src/commands/create.dart @@ -206,7 +206,7 @@ Your main program file is lib/main.dart in the $relativeAppPath directory. Your plugin code is in lib/$projectName.dart in the $relativePluginPath directory. Host platform code is in the android/ and ios/ directories under $relativePluginPath. -To edit platform code in an IDE see https://flutter.io/platform-plugins/#edit-code. +To edit platform code in an IDE see https://flutter.io/developing-packages/#edit-plugin-package. '''); } } else { diff --git a/packages/flutter_tools/templates/plugin/README.md.tmpl b/packages/flutter_tools/templates/plugin/README.md.tmpl index 4ff4f33d12..0c941feb71 100644 --- a/packages/flutter_tools/templates/plugin/README.md.tmpl +++ b/packages/flutter_tools/templates/plugin/README.md.tmpl @@ -7,4 +7,4 @@ For help getting started with Flutter, view our online [documentation](https://flutter.io/). -For help on editing plugin code, view the [documentation](https://flutter.io/platform-plugins/#edit-code). \ No newline at end of file +For help on editing plugin code, view the [documentation](https://flutter.io/developing-packages/#edit-plugin-package).