This commit is contained in:
2026-03-20 19:53:55 +03:00
parent 0793a86ebb
commit a2931618b2
21 changed files with 160 additions and 42 deletions
+31
View File
@@ -514,6 +514,37 @@ class _SettingsScreenState extends ConsumerState<SettingsScreen> {
),
),
const SizedBox(height: 32),
Padding(
padding: const EdgeInsets.only(bottom: 24),
child: Center(
child: RichText(
textAlign: TextAlign.center,
text: const TextSpan(
style: TextStyle(fontSize: 13, color: Colors.white30),
children: [
TextSpan(
text: 'casha',
style: TextStyle(
fontWeight: FontWeight.bold,
color: Colors.white38,
),
),
TextSpan(
text: ' powered with ❤️ by ',
style: TextStyle(fontStyle: FontStyle.italic),
),
TextSpan(
text: 'kolo',
style: TextStyle(
fontWeight: FontWeight.bold,
color: Colors.white38,
),
),
],
),
),
),
),
],
),
),