Graying out banks that do not support FinTS 3.0

This commit is contained in:
dankito 2020-08-03 21:07:53 +02:00
parent 26717bf70b
commit 685693ab23
1 changed files with 2 additions and 0 deletions

View File

@ -29,6 +29,8 @@ struct BankInfoListItem: View {
.styleAsDetail()
.padding(.top, 6.0)
}
.opacity(bank.supportsFinTs3_0 ? 1.0 : 0.25)
.accentColor(bank.supportsFinTs3_0 ? .label : .secondaryLabel)
}
}