0.2.0 • Published 1 year ago

@logo-rn/logo-tab-control v0.2.0

Weekly downloads
-
License
See license in LI...
Repository
-
Last release
1 year ago

@logo-rn/logo-tab-control

enables users to navigate between screens or makes different portions of on-screen content accessible by switching between views.

npm version

Installation

Install the component:

npm i @logo-rn/logo-tab-control -s

Usage

Once installed, import the component in your application:

import {LogoTabControl} from '@logo-rn/logo-tab-control';
const buttonTab = [
   {
    textResourceKey: "1",
    text: "Tab1",
 
    visibility: true,
  },
  {
    textResourceKey: "2",
    text: "Tab2",
    visibility: true,
  },
  {
    textResourceKey: "3",
    text: "Tab3",
     visibility: true,
  }
 ];
 //...
  <LogoTabControl tabs={buttonTab} />

For more detailed information, please visit:

Logo Elements Documentation ↗