here is the code
void main() {
// Обернем запуск приложения в try-catch для обработки ошибок
try {
_showMessage("Запуск приложения...");
// Запуск приложения
runApp(const MyApp());
_showMessage("Приложение успешно запущено.");
}
I expect that dialog boxes will be displayed, but they are not displayed. I assembled the project for Windows. I also downloaded the dll required by the application from github actions, but the application does not display anything, neither an error nor a dialog box. Why. What is the problem?