subscription list+view
Some checks failed
Build Docker and Deploy / Build Docker Container (push) Successful in 1m8s
Build Docker and Deploy / Run Unit-Tests (push) Failing after 11m19s
Build Docker and Deploy / Deploy to Server (push) Has been skipped

This commit is contained in:
2025-04-18 01:45:56 +02:00
parent 63bc71c405
commit 24cd1692c6
14 changed files with 750 additions and 23 deletions

View File

@@ -32,6 +32,10 @@ class Navi {
static void popDialog(BuildContext dialogContext) {
Navigator.pop(dialogContext);
}
static void pop(BuildContext context) {
Navigator.of(context).pop();
}
}
class SCNRouteObserver extends RouteObserver<PageRoute<dynamic>> {

View File

@@ -130,7 +130,10 @@ class UI {
padding: EdgeInsets.fromLTRB(16, 2, 4, 2),
child: Row(
children: [
FaIcon(icon, size: 18),
ConstrainedBox(
constraints: new BoxConstraints(minWidth: 18.0),
child: Center(child: FaIcon(icon, size: 18)),
),
SizedBox(width: 16),
Expanded(
child: Column(