index_page.dart 1.3 KB

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