(self)
| 318 | self.progress_bar = ui.ProgressBar(parent=window, fraction=0) |
| 319 | |
| 320 | def count(self): |
| 321 | self.counter += 1 |
| 322 | self.counter_button.label = f"Clicked {self.counter} times" |
| 323 | |
| 324 | def timer_callback(self): |
| 325 | self.timer = None |
no outgoing calls