Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/content/resources/architectural-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,6 @@ way up to the root widget (the container that hosts the Flutter app, typically
<?code-excerpt "lib/main.dart (main)"?>
```dart
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Thank you for catching this unused import. However, this code block is generated from a source file, as indicated by the <?code-excerpt ...> tag above. Changes made directly to the markdown file will be overwritten when the code excerpts are regenerated.

Please remove the import 'package:flutter/services.dart'; line from the source file located at examples/resources/architectural_overview/lib/main.dart and then run the tool to update the excerpts. This will ensure the change is permanent.

void main() => runApp(const MyApp());
Expand Down
Loading