npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

expo-hamro-image-picker

v0.0.2

Published

A Image Picker/Selector library for react native expo

Downloads

3

Readme

expo-hamro-image-picker

Dynamic Image/Files Picker For Expo

| 1 | 2 | 3 | 4 | | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- |

Installation

To get started install the package in your Expo project by running:

yarn add expo-hamro-image-picker

or

npm i expo-hamro-image-picker

Basic Usage

import React from 'react';
import { View, Button } from 'react-native';
import ExpoHamroImagePicker from 'expo-hamro-image-picker';

export default function Test() {
    const [showPicker, setShowPicker] = useState(false);

    const handleSubmit = (data) => {
        console.log(data)
    }

    render() {
        return (
            <View style={{ flex: 1, backgroundColor: '#000000' }}>
                <ExpoHamroImagePicker
                    handlePickerClose={()=>{
                        console.log("picker closed");
                        setShowPicker(false);
                    }}
                    enablePicker={showPicker}
                    handleSubmit={handleSubmit}
                    enableEditor={true}
                    enableMultiSelect={true}
                    headerText="New Image"
                />
                <Button title="Open Image Picker" onPress={()=>setShowPicker(true)}/>
            </View>
        )
    }
}

Props

| Parameter | type | required | default | description | | ------------- | ----- | -------- | -------- | ------------- | | enablePicker|boolean|Yes||open/hide image picker| | headerText|string|No|New Post|header text shows at top| | enableAlbums|boolean|No|true|allows select albums| | enableCameraCapture|boolean|No|true|allows capture image using camera| | enableMultiSelect|boolean|No|false|allows select multiple image/file| | multiSelectOptions|MultiSelectOptionsProps|No|{ minimumImageCount: 1, maximumImageCount: -1 }|configuration for multi image/file select| | backButtonClose|boolean|No|true|close image picker on back button press| | coverScreen|boolean|No|true|covers entire screen| | swipeToClose|boolean|No|true|swipe down to close| | multipleSelectEnabled|boolean|No|false|multiple image/file select enabled by default when picker opens| | ImageComponent|Component|No|ImageBackground|allows to use different Image Component. i.e. Image/FastImage etc.| | handlePickerClose|function|No|()=>{console.log("picker closes")}|triggers when picker closes| | handleSubmit|function|No|(data)=>{console.log("picked image", data)}|triggers when everything is done| | enableEditor|boolean|No|true|enable editor to allow edit picked image| | editorOptions|ImageEditorProps|No|{fixedCropAspectRatio={16 / 9} lockAspectRatio={false}}|Image Editor Configurations: https://github.com/thomas-coldwell/expo-image-editor|

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT