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