Small visual tweaks
This commit is contained in:
parent
4f041f9020
commit
be11eed89d
@ -61,6 +61,7 @@ struct ItemIconView: View {
|
||||
if shouldShowCaption {
|
||||
Text(item.name ?? "Unknown")
|
||||
.font(.subheadline)
|
||||
.frame(width: width)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -14,7 +14,7 @@ struct ItemPersonViewItemsRow: View {
|
||||
|
||||
var body: some View {
|
||||
ScrollView(.horizontal) {
|
||||
HStack {
|
||||
HStack(alignment: .top) {
|
||||
ForEach(items) {item in
|
||||
NavigationLink {
|
||||
ItemView(item: item)
|
||||
|
@ -16,6 +16,7 @@ struct LicenseItemView: View {
|
||||
var body: some View {
|
||||
VStack(alignment: .leading) {
|
||||
Link(name, destination: URL(string: url)!)
|
||||
.bold()
|
||||
|
||||
ExpandableText(license)
|
||||
.multilineTextAlignment(.leading)
|
||||
|
@ -64,6 +64,8 @@ struct SettingsView: View {
|
||||
} label: {
|
||||
Text("Acknowledgements")
|
||||
}
|
||||
} header: {
|
||||
Text("About")
|
||||
}
|
||||
}
|
||||
.navigationTitle("Settings")
|
||||
|
Loading…
Reference in New Issue
Block a user