Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8a81aa9

Browse files
committedApr 27, 2025
Fix import path
1 parent f5cda0d commit 8a81aa9

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed
 

‎main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414
"fyne.io/fyne/v2/theme"
1515
"fyne.io/fyne/v2/widget"
1616

17-
"github.com/fyne-io/demo/data"
18-
"github.com/fyne-io/demo/tutorials"
17+
"fyne.io/demo/data"
18+
"fyne.io/demo/tutorials"
1919
)
2020

2121
const preferenceCurrentTutorial = "currentTutorial"

‎tutorials/canvas.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"fyne.io/fyne/v2/canvas"
88
"fyne.io/fyne/v2/container"
99

10-
"github.com/fyne-io/demo/data"
10+
"fyne.io/demo/data"
1111
)
1212

1313
func rgbGradient(x, y, w, h int) color.Color {

‎tutorials/container.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"fyne.io/fyne/v2/theme"
1313
"fyne.io/fyne/v2/widget"
1414

15-
"github.com/fyne-io/demo/data"
15+
"fyne.io/demo/data"
1616
)
1717

1818
// containerScreen loads a tab panel for containers

‎tutorials/welcome.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"fyne.io/fyne/v2/theme"
1313
"fyne.io/fyne/v2/widget"
1414

15-
"github.com/fyne-io/demo/data"
15+
"fyne.io/demo/data"
1616
)
1717

1818
func parseURL(urlStr string) *url.URL {

‎tutorials/widget.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"fyne.io/fyne/v2/theme"
1515
"fyne.io/fyne/v2/widget"
1616

17-
"github.com/fyne-io/demo/data"
17+
"fyne.io/demo/data"
1818
)
1919

2020
const (

0 commit comments

Comments
 (0)
Failed to load comments.