mirror of
https://github.com/pyapp-kit/superqt.git
synced 2025-07-21 12:11:07 +02:00
* remove qtcompat * change imports * change codecov * add dep * run tests against dalthviz branch * update * more replace * pin pyside6 for sake of test * add deprecation * drop qt 5.11 * unpin pyside6
22 lines
519 B
Python
22 lines
519 B
Python
try:
|
|
from fonticon_fa5 import FA5S
|
|
except ImportError as e:
|
|
raise type(e)(
|
|
"This example requires the fontawesome fontpack:\n\n"
|
|
"pip install git+https://github.com/tlambert03/fonticon-fontawesome5.git"
|
|
)
|
|
|
|
from qtpy.QtCore import QSize
|
|
from qtpy.QtWidgets import QApplication, QPushButton
|
|
|
|
from superqt.fonticon import icon, pulse
|
|
|
|
app = QApplication([])
|
|
|
|
btn2 = QPushButton()
|
|
btn2.setIcon(icon(FA5S.spinner, animation=pulse(btn2)))
|
|
btn2.setIconSize(QSize(225, 225))
|
|
btn2.show()
|
|
|
|
app.exec()
|