@@ -762,7 +762,7 @@ function.
762
762
763
763
Compiling a text ` rfwtxt ` file to the binary ` rfw ` format can be done
764
764
by calling
765
- [ ` encodeLibraryBlob ` ] ( https://pub.dev/documentation/rfw/latest/formats /encodeLibraryBlob.html )
765
+ [ ` encodeLibraryBlob ` ] ( https://pub.dev/documentation/rfw/latest/rfw /encodeLibraryBlob.html )
766
766
on the results of calling ` parseLibraryFile ` .
767
767
768
768
The example in ` example/remote ` has some [ elaborate remote
@@ -853,7 +853,7 @@ with the `DynamicContent` under the name `server`.
853
853
> This data is parsed by calling
854
854
> [`parseDataFile` ](https://pub.dev/documentation/rfw/latest/formats/parseDataFile.html),
855
855
> 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).
857
857
> That object is then passed to a
858
858
> [`DynamicContent`](https://pub.dev/documentation/rfw/latest/rfw/DynamicContent-class.html),
859
859
> using
@@ -867,9 +867,9 @@ with the `DynamicContent` under the name `server`.
867
867
>
868
868
> Ideally, rather than dealing with this text form on the client, the
869
869
> 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)
871
871
> 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).
873
873
874
874
First, let's render a plain Flutter `ListView` with the name of each
875
875
product. The `Shop` widget below achieves this:
0 commit comments