Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[wiki migration] Add static images for flutter/flutter/docs/ #246

Merged
merged 5 commits into from
May 20, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
2 changes: 2 additions & 0 deletions assets/wiki/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Assets in this directory are used in the flutter/flutter/docs/ wiki pages,
pertaining to infrastructure and contributing guidelines.
Binary file added assets/wiki/cros-lint-rules-sample-results.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/wiki/formatting_settings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/wiki/luci_infra_failure_overview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/wiki/luci_post_submit_infra_failure.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/wiki/luci_post_submit_rerun.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/wiki/luci_post_submit_test_failure.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/wiki/luci_pre_submit_infra_failure.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/wiki/luci_pre_submit_rerun.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/wiki/luci_pre_submit_test_failure.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/wiki/task_flake_box.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/wiki/task_flake_multiple_builds.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/wiki/task_flake_test_runner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/wiki/trailing_commas.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/wiki/without_trailing_commas.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import FlutterMacOS
import Foundation

import path_provider_foundation
import path_provider_macos

func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
Expand Down
2 changes: 1 addition & 1 deletion packages/diagram_capture/test/diagram_capture_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ class _TestTappableDiagramState extends State<TestTappableDiagram> {
return TextButton(
style: ButtonStyle(
backgroundColor:
MaterialStateProperty.all<Color?>(on ? Colors.red : Colors.blue),
WidgetStateProperty.all<Color?>(on ? Colors.red : Colors.blue),
),
onPressed: () {
setState(() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import FlutterMacOS
import Foundation

import path_provider_foundation
import path_provider_macos

func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
Expand Down
1 change: 1 addition & 0 deletions packages/diagrams/lib/src/card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ class CardDiagram extends StatelessWidget with DiagramMetadata {
subtitle: Text('Music by Julie Gable. Lyrics by Sidney Stein.'),
),
ButtonBar(
// ignore: deprecated_member_use
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Filed flutter/flutter#148709 for follow up

children: <Widget>[
TextButton(
child: const Text('BUY TICKETS'),
Expand Down
1 change: 0 additions & 1 deletion packages/diagrams/lib/src/implicit_animations.dart
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ class AnimatedPhysicalModelDiagram
elevation: selected ? 20.0 : 0.0,
shadowColor: Colors.grey,
borderRadius: selected ? selectedBorder : unselectedBorder,
shape: BoxShape.rectangle,
duration: _kAnimationDuration,
curve: curve,
child: Container(color: Colors.blue),
Expand Down
3 changes: 3 additions & 0 deletions packages/snippets/test/filesystem_resource_provider.dart
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ class FileSystemResourceProvider implements ResourceProvider {
return true;
}());
}

@override
Link getLink(String path) => throw UnimplementedError();
}

/// A `dart:io` based implementation of [File].
Expand Down
Loading