1234567891011121314151617181920212223 |
- import 'package:flutter/material.dart';
- class CustomAppBar extends StatefulWidget {
- const CustomAppBar({super.key});
- @override
- State<CustomAppBar> createState() => _CustomAppBarState();
- }
- class _CustomAppBarState extends State<CustomAppBar> {
- @override
- Widget build(BuildContext context) {
- return Row(
- children: [
- GestureDetector(
- onTap: () => Navigator.of(context).pushNamed('home'),
- child: SizedBox(
- height: 50, width: 50, child: Image.asset('Turquessa.png')))
- ],
- );
- }
- }
|