now with background images!

This commit is contained in:
2024-09-18 21:36:43 -04:00
parent 1a6ca9fa73
commit 0a9b0f7547
7 changed files with 71 additions and 41 deletions

View File

@@ -38,12 +38,21 @@ class Links extends StatelessWidget {
@override
Widget build(BuildContext context) {
return DefaultTextStyle(
style: Theme.of(context).textTheme.headlineSmall!,
child: SafeZone(
child: Center(
child: Column(
children: links.map((link) => link).toList(),
return Container(
decoration: const BoxDecoration(
image: DecorationImage(
image: AssetImage('assets/images/app-background3.jpg'),
fit: BoxFit.cover,
opacity: 0.4,
),
),
child: DefaultTextStyle(
style: Theme.of(context).textTheme.headlineSmall!,
child: SafeZone(
child: Center(
child: Column(
children: links.map((link) => link).toList(),
),
),
),
),