custom_appbar.dart 556 B

1234567891011121314151617181920212223
  1. import 'package:flutter/material.dart';
  2. class CustomAppBar extends StatefulWidget {
  3. const CustomAppBar({super.key});
  4. @override
  5. State<CustomAppBar> createState() => _CustomAppBarState();
  6. }
  7. class _CustomAppBarState extends State<CustomAppBar> {
  8. @override
  9. Widget build(BuildContext context) {
  10. return Row(
  11. children: [
  12. GestureDetector(
  13. onTap: () => Navigator.of(context).pushNamed('home'),
  14. child: SizedBox(
  15. height: 50, width: 50, child: Image.asset('Turquessa.png')))
  16. ],
  17. );
  18. }
  19. }