Files
be_happy_public/lib/presentation/components/custom_app_bar.dart
2026-05-12 12:02:40 +03:00

34 lines
915 B
Dart

import 'package:flutter/material.dart';
class CustomAppBar extends StatelessWidget {
final String title;
const CustomAppBar({super.key, required this.title});
@override
Widget build(BuildContext context) {
return Row(
children: [
InkWell(
onTap: () => Navigator.pop(context),
child: Row(
children: [
Icon(Icons.arrow_back_ios_sharp, color: const Color(0x99FFFFFF), size: 20),
Icon(Icons.arrow_back_ios_sharp, color: const Color(0x66FFFFFF), size: 20),
Icon(Icons.arrow_back_ios_sharp, color: const Color(0x22FFFFFF), size: 20),
],
),
),
const SizedBox(width: 20),
Text(
title,
style: const TextStyle(
color: Colors.white,
fontSize: 20,
fontWeight: FontWeight.w600,
),
),
],
);
}
}