This commit is contained in:
2025-05-18 15:09:05 +02:00
parent facbc16bb2
commit baf0dfa99d
7 changed files with 72 additions and 42 deletions

View File

@@ -44,7 +44,7 @@ class AccountListPageState extends State<AccountListPage> {
width: 150,
height: 100,
child: Card(
color: colorHash(state.accounts[index].name!),
color: colorHash(state.accounts[index].name),
shape:
index == state.activeAccountIndex
? RoundedRectangleBorder(
@@ -61,7 +61,7 @@ class AccountListPageState extends State<AccountListPage> {
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Text(state.accounts[index].name!),
Text(state.accounts[index].name),
FutureBuilder(
future: GetIt.I
.get<OkaneDatabase>()