stylesheet Qt designer:
QMainWindow {
background-image: url(:/tela/app_imagens/kawaii-1546834.png);
background-repeat: no-repeat;
background-position: center;
}
In the preview of the qt designer the stylesheet works normally:
however when running the application nothing appears:
What happens is that Qt Designer compiles the .qrc and imports it unlike your script which does not. The solution is:
pyrcc5 file.qrc -o file_rc.py
import file_rc