new project stable version

This commit is contained in:
2026-05-10 19:11:31 +03:00
commit 3616f84556
391 changed files with 23857 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
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,
),
),
],
);
}
}