(message string, w fyne.Window)
| 772 | } |
| 773 | |
| 774 | func openWaitScreen(message string, w fyne.Window) { |
| 775 | // Create a dialog to show the operation status |
| 776 | progressBar := widget.NewProgressBarInfinite() |
| 777 | dialogContent := container.NewCenter( |
| 778 | container.NewVBox( |
| 779 | widget.NewLabel(message), |
| 780 | progressBar), |
| 781 | ) |
| 782 | |
| 783 | w.SetContent(dialogContent) |
| 784 | } |
| 785 | |
| 786 | func showProgressScreen(message string, w fyne.Window, progressData binding.Float) { |
| 787 | // Create a dialog to show the operation status |
no outgoing calls
no test coverage detected