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))
],
),
scroll direction of content
rtl
Comments are closed.