How to make the dialog and the text fit the device screen?
Solved
Qt 6
-
I have a dialog with long text
Required sound format is not supported on your device. The application will continue to work, but the sound will be disabled.
:import QtQuick import QtQuick.Controls import QtQuick.Layouts Dialog { id: soundWarningDialog modal: true title: "Too long text" standardButtons: Dialog.Ok Text { text: qsTr("SoundWarning_Key") } }
on Android emulator it looks like this:
How to make the dialog and the text fit the emulator screen?