版本0.0.9更新!
新增
ToolTip 工具提示

在这个版本中,我添加了一个新的小部件 -> FluToolTip
你可以这样使用
tooltip1 = FluToolTip(master, text="One useful tooltip")
widget.tooltip(text="One useful tooltip")
示例
from tkflu import *
root = FluWindow()
thememanager = FluThemeManager(root, mode="light")
button = FluButton(root, text="Click me", command=lambda: print("Clicked"), style="standard")
button.pack()
tooltip = FluToolTip(button, text="This is a tooltip")
root.mainloop()