| 10 | |
| 11 | |
| 12 | class ShowcaseScreen(Screen): |
| 13 | fullscreen = BooleanProperty(False) |
| 14 | |
| 15 | def add_widget(self, *args, **kwargs): |
| 16 | if 'content' in self.ids: |
| 17 | return self.ids.content.add_widget(*args, **kwargs) |
| 18 | return super(ShowcaseScreen, self).add_widget(*args, **kwargs) |
| 19 | |
| 20 | |
| 21 | class ShowcaseApp(App): |
nothing calls this directly
no outgoing calls
no test coverage detected