Skip to content

Commit 8f72e4b

Browse files
[rfw] Update broken links in rfw's README.md (#9796)
This PR fixes the broken links in the README.md. **Test exemption reason**: PR only affects .md files.. ## Pre-Review Checklist **Note**: The Flutter team is currently trialing the use of [Gemini Code Assist for GitHub](https://developers.google.com/gemini-code-assist/docs/review-github-code). Comments from the `gemini-code-assist` bot should not be taken as authoritative feedback from the Flutter team. If you find its comments useful you can update your code accordingly, but if you are unsure or disagree with the feedback, please feel free to wait for a Flutter team member's review for guidance on which automated comments should be addressed. [^1]: Regular contributors who have demonstrated familiarity with the repository guidelines only need to comment if the PR is not auto-exempted by repo tooling.
1 parent 32ef211 commit 8f72e4b

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

packages/rfw/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
## NEXT
1+
## 1.0.32
22

3+
* Updates broken links in README.md.
34
* Updates minimum supported SDK version to Flutter 3.32/Dart 3.8.
45
* Removes the wasm example.
56

packages/rfw/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -762,7 +762,7 @@ function.
762762

763763
Compiling a text `rfwtxt` file to the binary `rfw` format can be done
764764
by calling
765-
[`encodeLibraryBlob`](https://pub.dev/documentation/rfw/latest/formats/encodeLibraryBlob.html)
765+
[`encodeLibraryBlob`](https://pub.dev/documentation/rfw/latest/rfw/encodeLibraryBlob.html)
766766
on the results of calling `parseLibraryFile`.
767767

768768
The example in `example/remote` has some [elaborate remote
@@ -853,7 +853,7 @@ with the `DynamicContent` under the name `server`.
853853
> This data is parsed by calling
854854
> [`parseDataFile`](https://pub.dev/documentation/rfw/latest/formats/parseDataFile.html),
855855
> which turns it into
856-
> [`DynamicMap`](https://pub.dev/documentation/rfw/latest/formats/DynamicMap.html).
856+
> [`DynamicMap`](https://pub.dev/documentation/rfw/latest/rfw/DynamicMap.html).
857857
> That object is then passed to a
858858
> [`DynamicContent`](https://pub.dev/documentation/rfw/latest/rfw/DynamicContent-class.html),
859859
> using
@@ -867,9 +867,9 @@ with the `DynamicContent` under the name `server`.
867867
>
868868
> Ideally, rather than dealing with this text form on the client, the
869869
> data would be turned into a binary form using
870-
> [`encodeDataBlob`](https://pub.dev/documentation/rfw/latest/formats/encodeDataBlob.html)
870+
> [`encodeDataBlob`](https://pub.dev/documentation/rfw/latest/rfw/encodeDataBlob.html)
871871
> on the server, and then parsed on the client using
872-
> [`decodeDataBlob`](https://pub.dev/documentation/rfw/latest/formats/decodeDataBlob.html).
872+
> [`decodeDataBlob`](https://pub.dev/documentation/rfw/latest/rfw/decodeDataBlob.html).
873873

874874
First, let's render a plain Flutter `ListView` with the name of each
875875
product. The `Shop` widget below achieves this:

packages/rfw/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: rfw
22
description: "Remote Flutter widgets: a library for rendering declarative widget description files at runtime."
33
repository: https://github.com/flutter/packages/tree/main/packages/rfw
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+rfw%22
5-
version: 1.0.31
5+
version: 1.0.32
66

77
environment:
88
sdk: ^3.8.0

0 commit comments

Comments
 (0)