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.