appflowy_board 0.1.2 copy "appflowy_board: ^0.1.2" to clipboard
appflowy_board: ^0.1.2 copied to clipboard

AppFlowyBoard is a board-style widget that consists of multi-groups. It supports drag and drop between different groups.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'multi_board_list_example.dart';
import 'single_board_list_example.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  int _currentIndex = 0;
  final _bottomNavigationColor = Colors.blue;

  final List<Widget> _examples = [
    const MultiBoardListExample(),
    const SingleBoardListExample(),
  ];

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
          appBar: AppBar(
            title: const Text('AppFlowy Board'),
          ),
          body: Container(color: Colors.white, child: _examples[_currentIndex]),
          bottomNavigationBar: BottomNavigationBar(
            fixedColor: _bottomNavigationColor,
            showSelectedLabels: true,
            showUnselectedLabels: false,
            currentIndex: _currentIndex,
            items: [
              BottomNavigationBarItem(
                  icon: Icon(Icons.grid_on, color: _bottomNavigationColor),
                  label: "MultiColumn"),
              BottomNavigationBarItem(
                  icon: Icon(Icons.grid_on, color: _bottomNavigationColor),
                  label: "SingleColumn"),
            ],
            onTap: (int index) {
              setState(() {
                _currentIndex = index;
              });
            },
          )),
    );
  }
}
145
likes
140
pub points
91%
popularity

Publisher

verified publisherappflowy.io

AppFlowyBoard is a board-style widget that consists of multi-groups. It supports drag and drop between different groups.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MPL-2.0, AGPL-3.0 (LICENSE)

Dependencies

equatable, flutter, provider

More

Packages that depend on appflowy_board