Created custom PushButton widget and added custom styleName property for styling primary buttons

This commit is contained in:
Nav
2022-12-21 15:39:18 +00:00
parent fc883d5d1e
commit 47b9c53033
13 changed files with 80 additions and 33 deletions

View File

@@ -0,0 +1,8 @@
#include "PushButton.hpp"
namespace Bloom::Widgets
{
PushButton::PushButton(QWidget* parent)
: QPushButton(parent)
{}
}