Skip to content

Commit

Permalink
Unbreak iOS build
Browse files Browse the repository at this point in the history
  • Loading branch information
andydotxyz committed Jul 8, 2024
1 parent 7d4b6e6 commit f465c52
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/driver/mobile/window_ios.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
package mobile

import (
"fyne.io/fyne/v2/driver"
fyneDriver "fyne.io/fyne/v2/driver"
)

// Assert we are satisfying the driver.NativeWindow interface
var _ driver.NativeWindow = (*window)(nil)
var _ fyneDriver.NativeWindow = (*window)(nil)

func (w *window) RunNative(fn func(context any)) {
fn(&driver.UnknownContext{})
fn(&fyneDriver.UnknownContext{})
}

0 comments on commit f465c52

Please sign in to comment.