[UPDATE] AppPillButton dimensions and expiration text

This commit is contained in:
Fabian Thies
2023-01-31 22:37:37 +01:00
parent 4ee053a4f9
commit 3f06a53058
3 changed files with 21 additions and 15 deletions

View File

@@ -51,10 +51,10 @@ struct AppPillButton: View {
}
var body: some View {
SwiftUI.Button(action: handleButton, label: {
SwiftUI.Button(action: handleButton) {
Text(buttonText.uppercased())
.bold()
})
}
.buttonStyle(PillButtonStyle(tintColor: storeApp?.tintColor ?? .black, progress: progress))
}