Indicate the active account

This commit is contained in:
2025-05-04 19:47:11 +02:00
parent eced6e6a6d
commit cf5dcfbc0f
4 changed files with 115 additions and 22 deletions

View File

@@ -0,0 +1,23 @@
import 'package:flutter/material.dart';
class AccountIndicator extends StatelessWidget {
final String accountName;
const AccountIndicator({super.key, required this.accountName});
@override
Widget build(BuildContext context) {
return SizedBox(
height: 50,
child: Row(
mainAxisAlignment: MainAxisAlignment.start,
children: [
Text(
accountName,
style: Theme.of(context).textTheme.titleLarge,
),
],
)
);
}
}