дизайна поделал заглушек потыкал

This commit is contained in:
Jganenokk
2026-03-26 12:06:42 +07:00
parent 2149db96e4
commit f93a89b9f3
8 changed files with 927 additions and 316 deletions
@@ -0,0 +1,21 @@
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
class ContactsTab extends StatelessWidget {
const ContactsTab({super.key});
@override
Widget build(BuildContext context) {
final cs = Theme.of(context).colorScheme;
return Center(
child: Text(
'Контакты (Заглушка)',
style: GoogleFonts.inter(
color: cs.onSurface,
fontSize: 20,
fontWeight: FontWeight.w500,
),
),
);
}
}