redesign for settings page

This commit is contained in:
Arseni
2026-03-13 23:01:57 +03:00
parent 70bd7a6214
commit d601f245d4
36 changed files with 1151 additions and 262 deletions

View File

@@ -0,0 +1,25 @@
import 'package:flutter/material.dart';
class RolesEmptyState extends StatelessWidget {
final String label;
const RolesEmptyState({
super.key,
required this.label,
});
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
return Center(
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 32),
child: Text(
label,
style: theme.textTheme.bodyMedium,
),
),
);
}
}