Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-native-vk-draggablelist

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-vk-draggablelist

## Demo

  • 2.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

react native draggableList

Demo

demo

How do I use it?

Installation

npm install react-native-draggablelist

Use in your code

var DraggableList = require('react-native-draggablelist');

<DraggableList
                isScrollView={false}
                dataSource={datas}
                keys={keys}
                
                containerStyle={{}}
                contentStyle={{ }}
                cellStyle={{width:this.baseItemWidth, height:this.baseItemHeight}}

                toggleScroll={(can)=>{
                    this.setState({
                        scrollable: can,
                    })
                    if(!can){
                        this.setState({
                            isEditing:true
                        })
                    }
               }}
                renderCell={(rowData)=>{
                    {/*console.log("renderCell:", rowData);*/}
                    return self.renderBaseById(rowData.id, SectionType.TypeSelected);
               }}
                onMove={(newKeys)=>{
                   console.log("newKeys:", newKeys);
                   newKeys = newKeys.map((key)=>{
                       return parseInt(key);
                   })
                   self.setState({selectedItems:newKeys})
               }}
            />
        
isScrollView:       is scrollView or view, 
dataSource:     isRequired, array of your data include id, like [{id: '1', name: ''}, {id: '2', name: ''}]
keys:               you can also pass data orders, like ['2','1'], but it should be same with your data ids

containerStyle: container style
contentStyle: content style
cellStyle:cell style


shouldUpdateId:     the cell should be update
shouldUpdate:       update all cell

renderCell:         render cell
toggleScroll:       if isScrollView is false, and outside component is a scrollView, should set the callback for scrollEnabled state
onMove:             callback function, return the orders of cell by id(string)
onPressCell:        when cell pressed 
Simplest sample use is :
        <DraggableList
                            isScrollView={false}
                            dataSource={[{id:1}, {id:2}]}
                            keys={[1,2]}
                            
                            renderCell={(rowData)=>{
                                {/*console.log("renderCell:", rowData);*/}
                                return (<Text>{rowData.id}</Text>);
                           }}
                        />
fork from react-native-dragablelist
 原来的项目不支持flexWrap

Keywords

FAQs

Package last updated on 20 Feb 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc