Set the window size from provided height and width
(width float32, height float32)
| 706 | |
| 707 | // Set the window size from provided height and width |
| 708 | func resizeWindow(width float32, height float32) { |
| 709 | s := fyne.NewSize(width, height) |
| 710 | session.Window.Resize(s) |
| 711 | } |
| 712 | |
| 713 | // Close the active wallet |
| 714 | func closeWallet() { |
no outgoing calls
no test coverage detected