From bb462ea62f0d49f934ca445efcd7da2531cfa973 Mon Sep 17 00:00:00 2001 From: Victor Eronmosele Date: Thu, 28 Aug 2025 08:10:06 +0100 Subject: [PATCH 1/3] Update broken links in rfw's README.md --- packages/rfw/CHANGELOG.md | 5 +++-- packages/rfw/README.md | 8 ++++---- packages/rfw/pubspec.yaml | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/packages/rfw/CHANGELOG.md b/packages/rfw/CHANGELOG.md index 02234a2b447..5734c2f7014 100644 --- a/packages/rfw/CHANGELOG.md +++ b/packages/rfw/CHANGELOG.md @@ -1,6 +1,7 @@ -## NEXT +## 1.0.32 -* Updates minimum supported SDK version to Flutter 3.29/Dart 3.7. +* Updates broken links in README.md +* Updates minimum supported SDK version to Flutter 3.27/Dart 3.6. * Removes the wasm example. ## 1.0.31 diff --git a/packages/rfw/README.md b/packages/rfw/README.md index b43a2caa071..730a7cd211e 100644 --- a/packages/rfw/README.md +++ b/packages/rfw/README.md @@ -762,7 +762,7 @@ function. Compiling a text `rfwtxt` file to the binary `rfw` format can be done by calling -[`encodeLibraryBlob`](https://pub.dev/documentation/rfw/latest/formats/encodeLibraryBlob.html) +[`encodeLibraryBlob`](https://pub.dev/documentation/rfw/latest/rfw/encodeLibraryBlob.html) on the results of calling `parseLibraryFile`. The example in `example/remote` has some [elaborate remote @@ -853,7 +853,7 @@ with the `DynamicContent` under the name `server`. > This data is parsed by calling > [`parseDataFile`](https://pub.dev/documentation/rfw/latest/formats/parseDataFile.html), > which turns it into -> [`DynamicMap`](https://pub.dev/documentation/rfw/latest/formats/DynamicMap.html). +> [`DynamicMap`](https://pub.dev/documentation/rfw/latest/rfw/DynamicMap.html). > That object is then passed to a > [`DynamicContent`](https://pub.dev/documentation/rfw/latest/rfw/DynamicContent-class.html), > using @@ -867,9 +867,9 @@ with the `DynamicContent` under the name `server`. > > Ideally, rather than dealing with this text form on the client, the > data would be turned into a binary form using -> [`encodeDataBlob`](https://pub.dev/documentation/rfw/latest/formats/encodeDataBlob.html) +> [`encodeDataBlob`](https://pub.dev/documentation/rfw/latest/rfw/encodeDataBlob.html) > on the server, and then parsed on the client using -> [`decodeDataBlob`](https://pub.dev/documentation/rfw/latest/formats/decodeDataBlob.html). +> [`decodeDataBlob`](https://pub.dev/documentation/rfw/latest/rfw/decodeDataBlob.html). First, let's render a plain Flutter `ListView` with the name of each product. The `Shop` widget below achieves this: diff --git a/packages/rfw/pubspec.yaml b/packages/rfw/pubspec.yaml index 574faad5ee1..b3bb7fc931b 100644 --- a/packages/rfw/pubspec.yaml +++ b/packages/rfw/pubspec.yaml @@ -2,7 +2,7 @@ name: rfw description: "Remote Flutter widgets: a library for rendering declarative widget description files at runtime." repository: https://github.com/flutter/packages/tree/main/packages/rfw issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+rfw%22 -version: 1.0.31 +version: 1.0.32 environment: sdk: ^3.7.0 From ce81729fc7a31d9f89ede7afa4fe6bc2a73e829e Mon Sep 17 00:00:00 2001 From: stuartmorgan-g Date: Tue, 11 Nov 2025 09:17:32 -0500 Subject: [PATCH 2/3] Fix merge --- packages/rfw/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/rfw/CHANGELOG.md b/packages/rfw/CHANGELOG.md index 5734c2f7014..c039ddf4ee3 100644 --- a/packages/rfw/CHANGELOG.md +++ b/packages/rfw/CHANGELOG.md @@ -1,7 +1,7 @@ ## 1.0.32 * Updates broken links in README.md -* Updates minimum supported SDK version to Flutter 3.27/Dart 3.6. +* Updates minimum supported SDK version to Flutter 3.29/Dart 3.7. * Removes the wasm example. ## 1.0.31 From 98e6d2572ce86ff570b4cbb35a9c8a259bd6ed96 Mon Sep 17 00:00:00 2001 From: stuartmorgan-g Date: Tue, 11 Nov 2025 09:17:54 -0500 Subject: [PATCH 3/3] Style fix --- packages/rfw/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/rfw/CHANGELOG.md b/packages/rfw/CHANGELOG.md index c039ddf4ee3..f6e3b7863d6 100644 --- a/packages/rfw/CHANGELOG.md +++ b/packages/rfw/CHANGELOG.md @@ -1,6 +1,6 @@ ## 1.0.32 -* Updates broken links in README.md +* Updates broken links in README.md. * Updates minimum supported SDK version to Flutter 3.29/Dart 3.7. * Removes the wasm example.