Lines Matching refs:an
2 title: Use an image picker
13 We want to build a feature that isn't possible with these core components and API: selecting an ima…
15 To achieve this, we'll use an Expo SDK library called <A href="/versions/latest/sdk/imagepicker">`e…
34 ## Pick an image from the device's media library
36 …launchImageLibraryAsync()` method that displays the system UI for choosing an image or a video fro…
38 We can use the button with the primary theme we created in the previous chapter to pick an image fr…
62 /* @info If the user does not picks an image, show an alert. */
74 - The `launchImageLibraryAsync()` receives an object in which different options are specified.
75 …This object is an <A href="/versions/latest/sdk/imagepicker/#imagepickeroptions">`ImagePickerOptio…
123 The `launchImageLibraryAsync()` method returns an object containing information about the selected …
125 To demonstrate what properties the `result` object contains, here is an example result object:
246 We added the functionality to pick an image from the device's media library.
249 title="Create an emoji picker modal"
251 description="In the next chapter, we'll learn how to create an emoji picker modal component."