Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Black screen when slide up application on iphone #1610

Closed
Hyhyx opened this issue Nov 27, 2020 · 2 comments
Closed

Black screen when slide up application on iphone #1610

Hyhyx opened this issue Nov 27, 2020 · 2 comments
Assignees
Labels
blocker Items that would block a forthcoming release bug Something isn't working help wanted Extra attention is needed

Comments

@Hyhyx
Copy link

Hyhyx commented Nov 27, 2020

Describe the bug:

Black screen when slide up application on iphone

To Reproduce:

Steps to reproduce the behaviour:

  1. fyne release ios ... (use development certificate)
  2. ideviceinstaller -i FyneIos.ipa
  3. open the application
  4. slide up from the bottom

Screenshots:

IMG_5095

Example code:

package main

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

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

	hello := widget.NewLabel("Hello Fyne!")
	w.SetContent(widget.NewVBox(
		hello,
		widget.NewButton("Hi!", func() {
			hello.SetText("Welcome :)")
		}),
	))

	w.ShowAndRun()
}

Device (please complete the following information):

  • OS: iOS
  • Version: 14.0
  • Go version: 1.15
  • Fyne version: 1.4.1
@andydotxyz
Copy link
Member

Thanks for capturing the bug, you're quite right I see it to.
I thought this was an intermittent bug but it's not.
If the app contains animations it will work OK - so it seems to relate to the driver missing a refresh as the app goes into background. We should resolve this!

@andydotxyz andydotxyz added bug Something isn't working help wanted Extra attention is needed labels Nov 27, 2020
@andydotxyz andydotxyz added the blocker Items that would block a forthcoming release label Dec 11, 2020
@andydotxyz andydotxyz self-assigned this Jan 15, 2021
@andydotxyz
Copy link
Member

Fix is on develop ready for release

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
blocker Items that would block a forthcoming release bug Something isn't working help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

2 participants