12345678910111213141516171819202122 |
- import 'package:flutter/material.dart';
- class HomePage extends StatefulWidget {
- const HomePage({super.key});
- @override
- State<HomePage> createState() => _HomePageState();
- }
- class _HomePageState extends State<HomePage> {
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- appBar: AppBar(actions: [
- IconButton(
- icon: Icon(Icons.logout),
- onPressed: () {},
- )
- ]),
- );
- }
- }
|