Skip to content

khofesh/proyecto-con-fyne

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Proyecto con fyne

project with fyne (golang)

getting started

install several applications

sudo dnf install golang gcc libXcursor-devel libXrandr-devel mesa-libGL-devel libXi-devel libXinerama-devel libXxf86vm-devel

tidy

add a simple code in main.go

package main

import (
	"fyne.io/fyne/v2/app"
	"fyne.io/fyne/v2/widget"
)

func main() {
	a := app.New()
	w := a.NewWindow("Hola Mundo")

	w.SetContent(widget.NewLabel("Hola, mundo!"))

	w.ShowAndRun()
}

then, run go mod tidy

packaging

go install fyne.io/fyne/v2/cmd/fyne@latest

fyne package -appVersion 1.0.0 -name MarkDown -release

sqlite

sudo dnf install sqlite
sudo dnf install sqlitebrowser
go get github.com/glebarez/go-sqlite

clean cache

go clean -modcache

references

Releases

No releases published

Packages

No packages published