Add scheduled profile update

This commit is contained in:
problematicconsumer
2023-09-30 11:15:20 +03:30
parent b60b22d694
commit eb4db44c06
7 changed files with 105 additions and 5 deletions

View File

@@ -37,6 +37,17 @@ class AppView extends HookConsumerWidget with PresLogger {
theme: theme.light(),
darkTheme: theme.dark(),
title: Constants.appName,
// https://github.com/ponnamkarthik/FlutterToast/issues/393
builder: (context, child) => Overlay(
initialEntries: [
if (child != null) ...[
OverlayEntry(
builder: (context) => child,
),
],
],
),
);
}
}