home_page.dart 449 B

12345678910111213141516171819202122
  1. import 'package:flutter/material.dart';
  2. class HomePage extends StatefulWidget {
  3. const HomePage({super.key});
  4. @override
  5. State<HomePage> createState() => _HomePageState();
  6. }
  7. class _HomePageState extends State<HomePage> {
  8. @override
  9. Widget build(BuildContext context) {
  10. return Scaffold(
  11. appBar: AppBar(actions: [
  12. IconButton(
  13. icon: Icon(Icons.logout),
  14. onPressed: () {},
  15. )
  16. ]),
  17. );
  18. }
  19. }