This commit is contained in:
2025-01-24 19:00:27 +05:30
parent 26aaa8c4e8
commit d9ddf69827
47 changed files with 3291 additions and 108 deletions

View File

@@ -0,0 +1,28 @@
import 'package:flutter/material.dart';
import 'package:grocery_app/utils/extensions/uicontext.dart';
class CustomTitle extends StatelessWidget {
final String title;
const CustomTitle({
Key? key,
required this.title,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return SafeArea(
bottom: false,
child: Column(
children: [
const SizedBox(height: 8),
Text(
title,
style: context.customExtraBold(Colors.black, 18),
),
const SizedBox(height: 24),
Divider(),
],
),
);
}
}