diff --git a/packages/rfw/CHANGELOG.md b/packages/rfw/CHANGELOG.md index 776aedd5b02..ba7879f14f7 100644 --- a/packages/rfw/CHANGELOG.md +++ b/packages/rfw/CHANGELOG.md @@ -1,5 +1,6 @@ -## NEXT +## 1.0.32 +* Updates broken links in README.md. * Updates minimum supported SDK version to Flutter 3.32/Dart 3.8. * Removes the wasm example. 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 07270b3250d..bc00c8b177d 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.8.0