index_page.dart 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. import 'package:flutter/material.dart';
  2. /// Description: index page
  3. /// Time : 09/03/2023 Sunday
  4. /// Author : liuyuqi.gov@msn.cn
  5. class IndexPage extends StatefulWidget {
  6. const IndexPage({super.key});
  7. @override
  8. State<IndexPage> createState() => _IndexPageState();
  9. }
  10. class _IndexPageState extends State<IndexPage> {
  11. final List<String> _list = <String>[];
  12. @override
  13. Widget build(BuildContext context) {
  14. return Scaffold(
  15. body: const Placeholder(),
  16. appBar: AppBar(
  17. title: const Text('Index Page'),
  18. ),
  19. floatingActionButton: FloatingActionButton(
  20. onPressed: () {
  21. setState(() {
  22. _list.add('Item ${_list.length}');
  23. });
  24. },
  25. tooltip: 'Add Item',
  26. child: const Icon(Icons.add),
  27. ),
  28. bottomNavigationBar: BottomNavigationBar(
  29. items: const <BottomNavigationBarItem>[
  30. BottomNavigationBarItem(
  31. icon: Icon(Icons.home),
  32. label: 'Home',
  33. ),
  34. BottomNavigationBarItem(
  35. icon: Icon(Icons.business),
  36. label: 'Message',
  37. ),
  38. BottomNavigationBarItem(
  39. icon: Icon(Icons.school),
  40. label: 'Mine',
  41. ),
  42. ],
  43. ));
  44. }
  45. }