Skip to content
Open
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
5 changes: 3 additions & 2 deletions packages/rfw/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions packages/rfw/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion packages/rfw/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down