Socket
Socket
Sign inDemoInstall

@logo-rn/logo-list

Package Overview
Dependencies
549
Maintainers
6
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @logo-rn/logo-list

<LogoList/> displays a list of data.


Version published
Weekly downloads
0
decreased by-100%
Maintainers
6
Created
Weekly downloads
 

Readme

Source

@logo-rn/logo-list

displays a list of data.

npm version

Installation

Install the component:

npm i @logo-rn/logo-list -s

Usage

Once installed, import the component in your application:

import {LogoList} from '@logo-rn/logo-list';
 const items = {
   columnProperties: [
     {
       displaytype: "DataColumn",
       id: "1",
       titleColumn: true
     },
     {
       displaytype: "NumericColumn",
       id: "2"
     }
   ],
   rows: [
     [
       { value: "Ahmet Borslan" },
       { value: "22" },
      ],
      [
       { value: "Devrim Güner" },
       { value: "21" },
     ]
   ]
 }
 //..
  <LogoList>
       {items.rows.map((item: any) => {
         return (
           <LogoList.Item 
             item={item}
             columnProperties={items.columnProperties}
             iconStackRowAvailable={true}
             iconStack={[ ]}
             swipeActions={ [{ type: "Decline", onPress: () => Alert.alert("alert") } } />
         )
       })}
     </LogoList>  

For more detailed information, please visit:

Logo Elements Documentation ↗

Keywords

FAQs

Last updated on 18 Mar 2024

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc