mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-08-14 17:41:30 +08:00

This way the app can be built for desktop platforms. There is still a lot of work to do in order to get it to work, but this is a start. Related to #137
10 lines
149 B
Go
10 lines
149 B
Go
package main
|
|
|
|
import (
|
|
"github.com/go-flutter-desktop/go-flutter"
|
|
)
|
|
|
|
var options = []flutter.Option{
|
|
flutter.WindowInitialDimensions(800, 1280),
|
|
}
|