FLUTTER ECOSYSTEM

Ali-Azmoud/vertical_tabs

A vertical tabs package for flutter framework.

vertical_tabs project cover
Stars
62
Forks
27
Last push (UTC)
Apr 20, 2021
Project status
Active
Ali-Azmoud GitHub avatar
GITHUB User

Ali-Azmoud ↗

FullStack Developer. .NET, React, Next, SolidJs, Flutter, Dart. Master of Computer Science (ImamReza University) Looking for a remote job

LanguagesDart

Packages published by this repository

Dependencies used

Dependency list 2 items
  • flutter{"sdk":"flutter"}
  • flutter_testDevelopment{"sdk":"flutter"}

Original README

English project snapshot. Visit GitHub for the latest content.

Expand / collapse project README

Vertical Tabs

A vertical tabs package for flutter framework.

Getting Started

A simple example of usage. to get more examples see Examples directory.
To see all settings please visit API reference of this package

...

VerticalTabs(
  tabsWidth: 150,
  tabs: <Tab>[
    Tab(child: Text('Flutter'), icon: Icon(Icons.phone)),
    Tab(child: Text('Dart')),
    Tab(child: Text('NodeJS')),
    Tab(child: Text('PHP')),
    Tab(child: Text('HTML 5')),
  ],
  contents: <Widget>[
    Container(child: Text('Flutter'), padding: EdgeInsets.all(20)),
    Container(child: Text('Dart'), padding: EdgeInsets.all(20)),
    Container(child: Text('NodeJS'), padding: EdgeInsets.all(20)),
    Container(child: Text('PHP'), padding: EdgeInsets.all(20)),
    Container(child: Text('HTML 5'), padding: EdgeInsets.all(20))
  ],
),
  
  

https://raw.githubusercontent.com/Ali-Azmoud/vertical_tabs/HEAD/vertical-tab-intro.gif




Scroll direction of content

https://raw.githubusercontent.com/Ali-Azmoud/vertical_tabs/HEAD/vertical-tab-verhor.gif




RTL

https://raw.githubusercontent.com/Ali-Azmoud/vertical_tabs/HEAD/vertical-tab-rtl.gif