This commit is contained in:
Leon Bösche
2026-01-16 02:52:17 +01:00
parent f94f36350f
commit 8dcf1fab1e
2 changed files with 5 additions and 2 deletions

View File

@@ -974,7 +974,7 @@ class _DocumentViewerState extends State<DocumentViewer> {
context: context, context: context,
builder: (BuildContext context) { builder: (BuildContext context) {
return Dialog( return Dialog(
backgroundColor: Colors.transparent, backgroundColor: AppTheme.primaryBackground.withValues(alpha: 0.65),
child: ConstrainedBox( child: ConstrainedBox(
constraints: const BoxConstraints(maxWidth: 400), constraints: const BoxConstraints(maxWidth: 400),
child: Container( child: Container(

View File

@@ -158,7 +158,10 @@ class _HomePageState extends State<HomePage> with TickerProviderStateMixin {
Navigator.of(dialogContext).pop(); Navigator.of(dialogContext).pop();
} }
}, },
child: const Text('Create'), child: Text(
'Create',
style: TextStyle(color: Colors.red[400]),
),
), ),
], ],
), ),