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.