Only run default command if no args

Add custom template (Frameworks)
This commit is contained in:
Lea Anthony
2018-12-26 19:09:18 +11:00
parent 859b2dd638
commit 53cf2bb953
20 changed files with 248 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
package main
import (
wails "github.com/wailsapp/wails"
)
var html = `<h1> Custom Project </h1>`
func main() {
// Initialise the app
app := wails.CreateApp(&wails.AppConfig{
Width: 800,
Height: 600,
Title: "My Project",
HTML: html,
})
app.Run()
}

View File

@@ -0,0 +1,7 @@
{
"name": "Custom",
"shortdescription": "Choose your own CSS Framework",
"description": "A basic template allowing use of CSS Frameworks",
"author": "Lea Anthony<lea.anthony@gmail.com>",
"created": "2018-10-22"
}