This commit is contained in:
Yegor Vialov
2020-05-03 10:30:51 +00:00
parent e9ad612fec
commit 5bc0b0868a
8 changed files with 155 additions and 137 deletions

View File

@ -29,7 +29,8 @@ class StartupUserMessagesManager {
}
void _showSupportAppDevelopmentMessage() {
eventBus.fire(ShowPopupDialogEvent(
eventBus.fire(ShowPopupEvent(
Popup(
title: "Hi!",
body: "As you may have noticed this app contains no ads. Also all app features are available for you for free. I'm not planning to change this in nearest future, but still you can support this application development materially. There is one-time payment available as well as several subscription options. Thanks.",
positiveText: "Show options",
@ -45,6 +46,7 @@ class StartupUserMessagesManager {
prefs.setBool(_supportAppDevelopmentMessageKey, true);
});
}
)
));
}