这是indexloc提供的服务,不要输入任何密码
Skip to content

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

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

Merged
merged 5 commits into from
May 20, 2024
Merged
Show file tree
Hide file tree
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
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
2 changes: 2 additions & 0 deletions packages/diagrams/lib/src/card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ import 'package:flutter/material.dart';

import 'diagram_step.dart';

// ignore_for_file: deprecated_member_use, https://github.com/flutter/flutter/issues/148709

class CardDiagram extends StatelessWidget with DiagramMetadata {
const CardDiagram({super.key});

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