Minor UI tweaks

Just for fun!
This commit is contained in:
zervo 2025-01-31 23:34:00 +01:00
parent 99cf3b3843
commit df8f6716fa
2 changed files with 6 additions and 4 deletions

View file

@ -77,7 +77,9 @@ func renderNavButton(th *material.Theme, icon *widget.Icon, label string, btn *w
}
return in.Layout(gtx, func(gtx layout.Context) layout.Dimensions {
return material.IconButton(th, btn, icon, label).Layout(gtx)
btn := material.IconButton(th, btn, icon, label)
btn.Size = unit.Dp(30)
return btn.Layout(gtx)
})
}
}

View file

@ -27,7 +27,7 @@ func renderView(th *material.Theme) layout.Widget {
// renderMainView displays the main view
func renderMainView(gtx layout.Context, th *material.Theme) layout.Dimensions {
title := material.H1(th, "Welcome to ICDB")
title := material.H2(th, "Welcome to ICDB")
title.Color = color.NRGBA{R: 127, G: 0, B: 0, A: 255}
title.Alignment = text.Middle
return title.Layout(gtx)
@ -35,14 +35,14 @@ func renderMainView(gtx layout.Context, th *material.Theme) layout.Dimensions {
// renderPartsView displays the parts list
func renderPartsView(gtx layout.Context, th *material.Theme) layout.Dimensions {
title := material.H1(th, "Parts Management")
title := material.H2(th, "Parts Management")
title.Alignment = text.Middle
return title.Layout(gtx)
}
// renderSettingsView displays the settings view
func renderSettingsView(gtx layout.Context, th *material.Theme) layout.Dimensions {
title := material.H1(th, "Settings")
title := material.H2(th, "Settings")
title.Alignment = text.Middle
return title.Layout(gtx)
}