Follow two steps:(Notice:GoAdmin version should be higher than v1.0.2)
-
- import the theme package
-
- set theme name in your config
Ex:
package main
import (
...
_ "github.com/GoAdminGroup/themes/sword"
...
)
func main() {
r := gin.Default()
gin.SetMode(gin.ReleaseMode)
gin.DefaultWriter = ioutil.Discard
eng := engine.Default()
cfg := config.Config{
...
Theme: "sword",
...
}
...
}
Of course, if you import multi themes, you can switch it in the real-time config center.