This commit is contained in:
2026-03-25 16:24:23 +03:00
parent d2278523bd
commit d1ef8a64a1
10 changed files with 897 additions and 878 deletions
@@ -0,0 +1,18 @@
import 'package:flutter/material.dart';
class SectionLabel extends StatelessWidget {
final String text;
const SectionLabel(this.text, {super.key});
@override
Widget build(BuildContext context) {
return Text(
text,
style: Theme.of(context).textTheme.bodySmall?.copyWith(
color: Theme.of(context).colorScheme.onSurface.withOpacity(0.6),
fontWeight: FontWeight.w600,
letterSpacing: 0.5,
),
);
}
}