Using the Media Picker
In this guide, youβll learn how to use the Media Picker in Nowa to let users pick an image or video and upload it into your app.
Weβll walk through a simple example where the user selects an image, and itβs instantly displayed in the app.
πΈ Step-by-Step: Pick an Image and Display Itβ
1. Add an Image Widgetβ
- Drag and drop an Image widget onto your screen.
- In the properties panel, set the Source to
bytes
. - Youβll see a
Bytes
field. Click Create Variable. - This creates a variable that stores the image in bytes format.
Uint8List
What does that mean?
Uint8List
stands for Unsigned Integer 8-bit List, which is just a way of storing raw binary data like images.
2. Add a Button to Trigger the Media Pickerβ
- Drop a Button widget and open the logic of "OnPressed" in circuit.
- Add the Show Media Picker node from "nowa" category
Configure the Media Picker:β
- Allow multiple selection: Toggle ON or OFF depending on your use case.
- Media type: Choose
image
,video
, orboth
. - Source type: Choose
gallery
,camera
, orboth
. - Preferred camera (if source includes camera): Pick
rear
orfront
.
The media picker needs permissions to access the gallery or camera.
When prompted, click Hot fix to auto-add all required dependencies.
- Toggle Await so the flow waits until the user finishes selecting a file.
- Enable Store result and choose New variable.
Letβs name this variable var1
.
The result will be stored as a list of type
XFile
.
What isXFile
?
XFile
is a cross-platform file representation from theimage_picker
package. It contains metadata like path, name, and functions likereadAsBytes()
to read the fileβs data.
This video shows the enire steps of building the logic
3. Extract the Image File from the XFile Listβ
Even when selecting one image, the result is still a list. So now:
- Click the
+
button to add a new expression node. - Go to Locals, pick
var1
(the variable that holds the result of the picker). - On the right side, click
+
to build an expression:- Select first β this gets the first file in the list.
- Then click
+
again to call readAsBytes() on the file.
The expression should now look like:
var1.first.readAsBytes()
4. Store the Bytes and Update the Imageβ
- Choose Store result, and create a new variable (we named it
imageBytes
). - This variable is of type
Uint8List
, which is exactly what your Image widget needs.
Now, go back to the image variable you created earlier (we called it image
in the video):
- Set it equal to
imageBytes
.
This connects the picked image data to the UI.
5. Refresh the Screenβ
- Add a Refresh node after updating the variable to make sure the UI updates and displays the new image.
6. Test It!β
- Select the screen and hit Play.
- Try picking an image.
- The image should instantly appear inside the Image widget π
β Recapβ
Hereβs a summary of what we did:
- Used the Media Picker to let the user pick a file.
- Retrieved the first item from the result list (
XFile
). - Used
readAsBytes()
to convert it to displayable format. - Stored the result in a
Uint8List
variable. - Connected it to the Image widget.
- Called Refresh to show the image.
You can extend the same flow for videos or multi-file selection as well!
Let us know what you build with it π