FLUTTER ECOSYSTEM

Ali-Azmoud/vertical_tabs

一个用于 Flutter 框架的垂直标签页包。

vertical_tabs 项目封面
Stars
62
Forks
27
最近推送(UTC)
2021年4月20日
项目状态
未归档
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

Mashhad, Iran官方网站 ↗
语言Dart

此仓库发布的插件

使用的依赖

依赖清单 2 项
  • flutter{"sdk":"flutter"}
  • flutter_test开发依赖{"sdk":"flutter"}

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 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