@logo-rn/logo-tab-control
v0.2.0
Published
<LogoTabControl/> enables users to navigate between screens or makes different portions of on-screen content accessible by switching between views.
Downloads
5
Readme
@logo-rn/logo-tab-control
enables users to navigate between screens or makes different portions of on-screen content accessible by switching between views.
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} />