Minor UI tweaks
Just for fun!
This commit is contained in:
parent
99cf3b3843
commit
df8f6716fa
2 changed files with 6 additions and 4 deletions
|
@ -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 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)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,7 +27,7 @@ func renderView(th *material.Theme) layout.Widget {
|
||||||
|
|
||||||
// renderMainView displays the main view
|
// renderMainView displays the main view
|
||||||
func renderMainView(gtx layout.Context, th *material.Theme) layout.Dimensions {
|
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.Color = color.NRGBA{R: 127, G: 0, B: 0, A: 255}
|
||||||
title.Alignment = text.Middle
|
title.Alignment = text.Middle
|
||||||
return title.Layout(gtx)
|
return title.Layout(gtx)
|
||||||
|
@ -35,14 +35,14 @@ func renderMainView(gtx layout.Context, th *material.Theme) layout.Dimensions {
|
||||||
|
|
||||||
// renderPartsView displays the parts list
|
// renderPartsView displays the parts list
|
||||||
func renderPartsView(gtx layout.Context, th *material.Theme) layout.Dimensions {
|
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
|
title.Alignment = text.Middle
|
||||||
return title.Layout(gtx)
|
return title.Layout(gtx)
|
||||||
}
|
}
|
||||||
|
|
||||||
// renderSettingsView displays the settings view
|
// renderSettingsView displays the settings view
|
||||||
func renderSettingsView(gtx layout.Context, th *material.Theme) layout.Dimensions {
|
func renderSettingsView(gtx layout.Context, th *material.Theme) layout.Dimensions {
|
||||||
title := material.H1(th, "Settings")
|
title := material.H2(th, "Settings")
|
||||||
title.Alignment = text.Middle
|
title.Alignment = text.Middle
|
||||||
return title.Layout(gtx)
|
return title.Layout(gtx)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue