示例#1
0
def main():
    return toga.App('Assistant Boots', 'org.pybee.salute', startup=build)
示例#2
0
def main():
    return toga.App('First App', 'org.pybee.helloworld', startup=build)
示例#3
0
def main():
    return toga.App('Crime Busters', 'dummy', startup=build)
示例#4
0
文件: app.py 项目: stantonxu/Notebook
def main():
    return toga.App('Temperature Converter', 'org.pybee.f_to_c', startup=build)
示例#5
0
def main():
    return toga.App('GramBooster', 'com.grambooster', startup=build)
示例#6
0
 def test_app_init_with_no_factory(self, mock_function):
     app = toga.App(self.name, self.app_id)
     mock_function.assert_called_once_with()
示例#7
0
def main():
    return toga.App('Test Table', 'org.pybee.helloworld', startup=build)
示例#8
0
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()
示例#9
0
def main():
    app = toga.App('Ventana', 'co.codigofacilito.toga', startup=build)
    return app