是否可以减小工具栏 KivyMD 中标题的大小

Is that possible to decrease the size of title in toolbar KivyMD

Is that possible to decrease the size of title in toolbar KivyMD

是的。在您的情况下,您可以通过 ids:

访问 font_style 属性
self.root.ids.toolbar.ids.label_title.font_style = 'H1'

(假设这是在App的方法中执行的,以Screen为根)。