FLUTTER ECOSYSTEM

nn1ks/floating_action_row

Um pacote Flutter que fornece um widget com uma linha ou coluna de botões de ação flutuantes

Capa do projeto linha de ação flutuante
Stars
4
Forks
8
Último push (UTC)
26 de mar. de 2021
Status do projeto
Ativo
Niklas Sauter GitHub avatar
GITHUB User

Niklas Sauter ↗

Germany
LinguagensDart

Tópicos técnicos

Dependências usadas

Lista de dependências 2 itens
  • flutter{"sdk":"flutter"}
  • flutter_testDesenvolvimento{"sdk":"flutter"}

README original

Texto original em inglês. Visite o GitHub para a versão atual.

Expandir / recolher 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.