Skip to content
Merged
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
2 changes: 1 addition & 1 deletion packages/stac/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ class MyApp extends StatelessWidget {
primarySwatch: Colors.blue,
),
home: Stac.fromNetwork(
StacRequest(
StacNetworkRequest(
url: _url,
method: Method.get,
),
Expand Down
3 changes: 1 addition & 2 deletions packages/stac/example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ class MyApp extends StatelessWidget {
primarySwatch: Colors.blue,
),
home: Stac.fromNetwork(
StacRequest(
StacNetworkRequest(
url: _url,
method: Method.get,
),
Expand All @@ -312,4 +312,3 @@ Check out the [Stac Gallery](https://github.com/StacDev/stac/tree/main/examples/


[form_screen]: https://github.com/StacDev/stac/blob/main/assets/form_screen_image.png

4 changes: 1 addition & 3 deletions website/docs/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ class MyApp extends StatelessWidget {
primarySwatch: Colors.blue,
),
home: Stac.fromNetwork(
StacRequest(
StacNetworkRequest(
url: _url,
method: Method.get,
),
Expand All @@ -455,5 +455,3 @@ That's it with just few lines of code your SDUI app is up and running.
<img src="/img/form_screen_image.png" alt="Form screen example"/>

For more detailed examples and advanced usage, refer to the [Stac Gallery App](https://github.com/StacDev/stac/tree/dev/examples/stac_gallery).