FLUTTER ECOSYSTEM

nn1ks/floating_action_row

一個提供行列浮動操作按鈕的 Flutter 套件

浮動操作列 專案封面
Stars
4
Forks
8
最近推送(UTC)
2021年3月26日
專案狀態
未封存
Niklas Sauter GitHub avatar
GITHUB User

Niklas Sauter ↗

Germany
語言Dart

技術主題

使用的依賴

依賴清單 2 項
  • flutter{"sdk":"flutter"}
  • flutter_test開發依賴{"sdk":"flutter"}

原始 README

以下為英文專案原文快照,最新內容請造訪 GitHub。

展開 / 收合專案 README

floating_action_row

A Flutter package that provides a widget with a row or column of floating action buttons.

https://raw.githubusercontent.com/niklas-8/floating_action_row/master/assets/1.jpg

Usage

To use this plugin, add floating_action_row as a dependency in your pubspec.yaml file.

Documentation

View the documentation for more information.

Example

FloatingActionRow(
    color: Colors.blueAccent,
    children: <Widget>[
        FloatingActionRowButton(
            icon: Icon(Icons.add),
            onTap: () {}
        ),
        FloatingActionRowDivider(),
        FloatingActionRowButton(
            icon: Icon(Icons.arrow_forward),
            onTap: () {}
        ),
    ],
)

See the example directory for a full example.

Issues & Feedback

Please file an issue to send feedback or report a bug. Thank you!

Contributing

Every pull request is welcome.