reorderables 0.6.0 copy "reorderables: ^0.6.0" to clipboard
reorderables: ^0.6.0 copied to clipboard

Reorderable table, row, column, wrap, sliver list that allow drag and drop of their children.

example/lib/main.dart

import 'package:flutter/material.dart';

import './column_example1.dart';
import './column_example2.dart';
import './nested_wrap_example.dart';
import './row_example.dart';
import './sliver_example.dart';
import './table_example.dart';
import './wrap_example.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Reorderables Demo',
      home: MyHomePage(title: 'Reorderables Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key? key, required this.title}) : super(key: key);

  // This widget is the home page of your application. It is stateful, meaning
  // that it has a State object (defined below) that contains fields that affect
  // how it looks.

  // This class is the configuration for the state. It holds the values (in this
  // case the title) provided by the parent (in this case the App widget) and
  // used by the build method of the State. Fields in a Widget subclass are
  // always marked "final".

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  int _currentIndex = 0;
  final List<Widget> _examples = [
    TableExample(),
    WrapExample(),
    NestedWrapExample(),
    ColumnExample1(),
    ColumnExample2(),
    RowExample(),
    SliverExample(),
  ];
  final _bottomNavigationColor = Colors.blue;

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        // Here we take the value from the MyHomePage object that was created by
        // the App.build method, and use it to set our appbar title.
        title: Text(widget.title),
      ),
      body: _examples[_currentIndex],
      bottomNavigationBar: BottomNavigationBar(
        fixedColor: _bottomNavigationColor,
        showSelectedLabels: true,
        showUnselectedLabels: false,
        currentIndex: _currentIndex,
        // this will be set when a new tab is tapped
//        type: BottomNavigationBarType.fixed,
        items: [
          BottomNavigationBarItem(
              icon: Icon(Icons.grid_on, color: _bottomNavigationColor),
              tooltip: "ReorderableTable",
              label: "Table"),
          BottomNavigationBarItem(
              icon: Icon(Icons.apps, color: _bottomNavigationColor),
              tooltip: "ReorderableWrap",
              label: "Wrap"),
          BottomNavigationBarItem(
              icon: Icon(Icons.view_quilt, color: _bottomNavigationColor),
              tooltip: 'Nested ReroderableWrap',
              label: "Nested"),
          BottomNavigationBarItem(
              icon: Icon(Icons.more_vert, color: _bottomNavigationColor),
              tooltip: "ReorderableColumn 1",
              label: "Column 1"),
          BottomNavigationBarItem(
              icon: Icon(Icons.more_vert, color: _bottomNavigationColor),
              tooltip: "ReroderableColumn 2",
              label: "Column 2"),
          BottomNavigationBarItem(
              icon: Icon(Icons.more_horiz, color: _bottomNavigationColor),
              tooltip: "ReorderableRow",
              label: "Row"),
          BottomNavigationBarItem(
              icon:
                  Icon(Icons.calendar_view_day, color: _bottomNavigationColor),
              tooltip: "ReroderableSliverList",
              label: "SliverList"),
        ],
        onTap: (int index) {
          setState(() {
            _currentIndex = index;
          });
        },
      ),
    );
  }
}
981
likes
150
points
54.6k
downloads

Publisher

unverified uploader

Weekly Downloads

Reorderable table, row, column, wrap, sliver list that allow drag and drop of their children.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on reorderables