April 2020
Intermediate to advanced
380 pages
9h 24m
English
In this section, we will make a POST request to the hosted model and pass it in the image selected by the user. The server will respond with a NetworkImage in PNG format. Then, we'll update the image widget we added earlier to show the enhanced image that's returned by the model.
Let's start integrating the hosted model into the application:
dependencies: flutter: http: 0.12.0+4 mime: 0.9.6+3
The http dependency contains a set of classes and functions that make consuming HTTP resources very convenient. The mime dependency ...
Read now
Unlock full access