Basic publisher page

This commit is contained in:
2024-12-01 22:30:32 +08:00
parent 32739821ba
commit 23c5a1a23e
10 changed files with 347 additions and 21 deletions

View File

@ -89,12 +89,15 @@ class AppBackground extends StatelessWidget {
return _buildWithBackgroundImage(context, file, child);
}
}
return Material(
color: Theme.of(context).colorScheme.surface,
child: child,
);
}
return Material(
color: isRoot
? Theme.of(context).colorScheme.surface
: Colors.transparent,
color: Colors.transparent,
child: child,
);
},