def main(): return toga.App('Assistant Boots', 'org.pybee.salute', startup=build)
def main(): return toga.App('First App', 'org.pybee.helloworld', startup=build)
def main(): return toga.App('Crime Busters', 'dummy', startup=build)
def main(): return toga.App('Temperature Converter', 'org.pybee.f_to_c', startup=build)
def main(): return toga.App('GramBooster', 'com.grambooster', startup=build)
def test_app_init_with_no_factory(self, mock_function): app = toga.App(self.name, self.app_id) mock_function.assert_called_once_with()
def main(): return toga.App('Test Table', 'org.pybee.helloworld', startup=build)
import time import toga from colosseum import CSS def build(app): tree = toga.Tree(headings=['First Heading', 'Second Heading']) tree._impl.insert(None, 10, 'first', 'second') return tree if __name__ == '__main__': app = toga.App('Test Table', 'org.pybee.helloworld', startup=build) app.main_loop()
def main(): app = toga.App('Ventana', 'co.codigofacilito.toga', startup=build) return app