Skip to content
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
3 changes: 2 additions & 1 deletion packages/go_router/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## NEXT
## 15.1.3

* Updates minimum supported SDK version to Flutter 3.27/Dart 3.6.
* Fixes typo in API docs.

## 15.1.2

Expand Down
2 changes: 0 additions & 2 deletions packages/go_router/lib/src/route.dart
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,6 @@ class GoRoute extends RouteBase {
/// property can be used to navigate to this route without knowing exact the
/// URI of it.
///
/// {@tool snippet}
/// Typical usage is as follows:
///
/// ```dart
Expand All @@ -326,7 +325,6 @@ class GoRoute extends RouteBase {
/// queryParameters: <String, String>{'qid': 'quid'},
/// );
/// ```
/// {@end-tool}
///
/// See the [named routes example](https://github.com/flutter/packages/blob/main/packages/go_router/example/lib/named_routes.dart)
/// for a complete runnable app.
Expand Down
2 changes: 1 addition & 1 deletion packages/go_router/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: go_router
description: A declarative router for Flutter based on Navigation 2 supporting
deep linking, data-driven routes and more
version: 15.1.2
version: 15.1.3
repository: https://github.com/flutter/packages/tree/main/packages/go_router
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+go_router%22

Expand Down
4 changes: 4 additions & 0 deletions packages/two_dimensional_scrollables/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.3.6

* Fixes typo in API docs.

## 0.3.5

* Updates minimum supported SDK version to Flutter 3.27/Dart 3.6.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,6 @@ class SpanDecoration {
/// This same row decoration will consume any padding from the column spans so
/// as to decorate the row as one continuous span.
///
/// {@tool snippet}
/// This example illustrates how [consumeSpanPadding] affects
/// [SpanDecoration.color]. By default, the color of the decoration
/// consumes the padding, coloring the row fully by including the padding
Expand Down Expand Up @@ -379,7 +378,6 @@ class SpanDecoration {
/// },
/// );
/// ```
/// {@end-tool}
final bool consumeSpanPadding;

/// Called to draw the decoration around a span.
Expand Down
2 changes: 1 addition & 1 deletion packages/two_dimensional_scrollables/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: two_dimensional_scrollables
description: Widgets that scroll using the two dimensional scrolling foundation.
version: 0.3.5
version: 0.3.6
repository: https://github.com/flutter/packages/tree/main/packages/two_dimensional_scrollables
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+two_dimensional_scrollables%22+

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## NEXT
## 2.13.1

* Updates minimum supported SDK version to Flutter 3.27/Dart 3.6.
* Fixes typo in API docs.

## 2.13.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import 'package:flutter/foundation.dart';
/// this class and providing a factory method that takes the
/// [JavaScriptMessage] as a parameter.
///
/// {@tool sample}
/// This example demonstrates how to extend the [JavaScriptMessage] to
/// provide additional platform specific parameters.
///
Expand Down Expand Up @@ -38,7 +37,6 @@ import 'package:flutter/foundation.dart';
/// final String? extraData;
/// }
/// ```
/// {@end-tool}
@immutable
class JavaScriptMessage {
/// Creates a new JavaScript message object.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ extension LoadRequestMethodExtensions on LoadRequestMethod {
/// Platform specific implementations can add additional fields by extending
/// this class.
///
/// {@tool sample}
/// This example demonstrates how to extend the [LoadRequestParams] to
/// provide additional platform specific parameters.
///
Expand Down Expand Up @@ -62,7 +61,6 @@ extension LoadRequestMethodExtensions on LoadRequestMethod {
/// final Uri? historyUrl;
/// }
/// ```
/// {@end-tool}
@immutable
class LoadRequestParams {
/// Used by the platform implementation to create a new [LoadRequestParams].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import 'package:flutter/material.dart';
/// Platform specific implementations can add additional fields by extending
/// this class.
///
/// {@tool sample}
/// This example demonstrates how to extend the [PlatformNavigationDelegateCreationParams] to
/// provide additional platform specific parameters.
///
Expand All @@ -36,7 +35,6 @@ import 'package:flutter/material.dart';
/// final String? filter;
/// }
/// ```
/// {@end-tool}
@immutable
class PlatformNavigationDelegateCreationParams {
/// Used by the platform implementation to create a new [PlatformNavigationkDelegate].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import 'package:flutter/material.dart';
/// Platform specific implementations can add additional fields by extending
/// this class.
///
/// {@tool sample}
/// This example demonstrates how to extend the [PlatformWebViewControllerCreationParams] to
/// provide additional platform specific parameters.
///
Expand Down Expand Up @@ -37,7 +36,6 @@ import 'package:flutter/material.dart';
/// final String? domain;
/// }
/// ```
/// {@end-tool}
@immutable
class PlatformWebViewControllerCreationParams {
/// Used by the platform implementation to create a new [PlatformWebViewController].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import 'package:flutter/material.dart';
/// Platform specific implementations can add additional fields by extending
/// this class.
///
/// {@tool sample}
/// This example demonstrates how to extend the [PlatformWebViewCookieManagerCreationParams] to
/// provide additional platform specific parameters.
///
Expand Down Expand Up @@ -37,7 +36,6 @@ import 'package:flutter/material.dart';
/// final Uri? uri;
/// }
/// ```
/// {@end-tool}
@immutable
class PlatformWebViewCookieManagerCreationParams {
/// Used by the platform implementation to create a new [PlatformWebViewCookieManagerDelegate].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import '../platform_webview_controller.dart';
/// Platform specific implementations can add additional fields by extending
/// this class.
///
/// {@tool sample}
/// This example demonstrates how to extend the [PlatformWebViewWidgetCreationParams] to
/// provide additional platform specific parameters.
///
Expand Down Expand Up @@ -44,7 +43,6 @@ import '../platform_webview_controller.dart';
/// final Object? platformSpecificFieldExample;
/// }
/// ```
/// {@end-tool}
@immutable
class PlatformWebViewWidgetCreationParams {
/// Used by the platform implementation to create a new [PlatformWebViewWidget].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ enum WebResourceErrorType {
/// Platform specific implementations can add additional fields by extending
/// this class.
///
/// {@tool sample}
/// This example demonstrates how to extend the [WebResourceError] to
/// provide additional platform specific parameters.
///
Expand All @@ -98,7 +97,6 @@ enum WebResourceErrorType {
/// final String? domain;
/// }
/// ```
/// {@end-tool}
@immutable
class WebResourceError {
/// Used by the platform implementation to create a new [WebResourceError].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ repository: https://github.com/flutter/packages/tree/main/packages/webview_flutt
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+webview_flutter%22
# NOTE: We strongly prefer non-breaking changes, even at the expense of a
# less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
version: 2.13.0
version: 2.13.1

environment:
sdk: ^3.6.0
Expand Down