aatex_board 0.0.1
aatex_board: ^0.0.1 copied to clipboard
AATex kanban board.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'multi_board_list_example.dart';
import 'multi_board_shrinkwrap_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 MultiBoardShrinkwrapListExample(),
const SingleBoardListExample(),
];
@override
Widget build(BuildContext context) {
print('+++++++1+++++++');
return MaterialApp(
home: Scaffold(
appBar: AppBar(title: const Text('AATex 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: "MultiShrinkwrapColumn ",
),
BottomNavigationBarItem(icon: Icon(Icons.grid_on, color: _bottomNavigationColor), label: "SingleColumn"),
],
onTap: (int index) {
setState(() {
_currentIndex = index;
});
},
),
),
);
}
}