We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b019e5 commit 54d0ee3Copy full SHA for 54d0ee3
assets/images/dero_polygon.png
33.3 KB
load_state.go
@@ -24,11 +24,11 @@ type LogoSplash struct {
24
25
func NewLogoSplash() *LogoSplash {
26
animtation := animation.NewAnimation(false, gween.NewSequence(
27
- gween.New(0, 1, 1, ease.Linear),
+ gween.New(0, 1, 1, ease.InBack),
28
))
29
animtation.Sequence.SetLoop(-1)
30
31
- src, _ := assets.GetImage("dero.jpg")
+ src, _ := assets.GetImage("dero_polygon.png")
32
33
image := &components.Image{
34
Src: paint.NewImageOp(src),
@@ -119,7 +119,7 @@ func (l *LoadState) Layout(gtx layout.Context, th *material.Theme) layout.Dimens
119
return l.logoSplash.Layout(gtx)
120
})
121
}),
122
- layout.Rigid(layout.Spacer{Height: unit.Dp(40)}.Layout),
+ layout.Rigid(layout.Spacer{Height: unit.Dp(20)}.Layout),
123
layout.Rigid(func(gtx layout.Context) layout.Dimensions {
124
return layout.Center.Layout(gtx, func(gtx layout.Context) layout.Dimensions {
125
lbl := material.Label(th, unit.Sp(20), l.status)
settings/settings.go
@@ -78,10 +78,9 @@ func Load() error {
78
if err != nil {
79
return err
80
}
81
-
82
- App = appSettings
83
84
+ App = appSettings
85
return nil
86
87
0 commit comments