#!/usr/bin/env python3 # -*- coding:utf-8 -*- from flexx import flx class Test(flx.Widget): def init(self): with flx.VBox(flex=1): for i in range(50): with flx.Widget(): flx.Label(text="test") def main(): flx.App(Test).serve() flx.start() if __name__ == "__main__": main()