diff --git a/assets/backgrounds/Ambiente.jpg b/assets/backgrounds/Ambiente.jpg new file mode 100644 index 0000000..b269c97 Binary files /dev/null and b/assets/backgrounds/Ambiente.jpg differ diff --git a/assets/backgrounds/Anmerkungen.jpg b/assets/backgrounds/Anmerkungen.jpg new file mode 100644 index 0000000..8273e0c Binary files /dev/null and b/assets/backgrounds/Anmerkungen.jpg differ diff --git a/assets/backgrounds/Essen.jpg b/assets/backgrounds/Essen.jpg new file mode 100644 index 0000000..c49f12e Binary files /dev/null and b/assets/backgrounds/Essen.jpg differ diff --git a/assets/backgrounds/Service.jpg b/assets/backgrounds/Service.jpg new file mode 100644 index 0000000..7205b37 Binary files /dev/null and b/assets/backgrounds/Service.jpg differ diff --git a/assets/backgrounds/Speziell.jpg b/assets/backgrounds/Speziell.jpg new file mode 100644 index 0000000..f6d2deb Binary files /dev/null and b/assets/backgrounds/Speziell.jpg differ diff --git a/lib/pages/pageAmbiente.dart b/lib/pages/pageAmbiente.dart index 91375a3..28abd95 100644 --- a/lib/pages/pageAmbiente.dart +++ b/lib/pages/pageAmbiente.dart @@ -10,7 +10,17 @@ class PageAmbiente extends StatelessWidget { @override Widget build(BuildContext context) { return Center( - child: SizedBox( + child: Container( + decoration: BoxDecoration( + image: DecorationImage( + image: AssetImage("assets/backgrounds/Ambiente.jpg"), + fit: BoxFit.cover, + colorFilter: ColorFilter.mode( + Colors.white.withOpacity(0.2), + BlendMode.dstATop + ), + ) + ), width: 600, child: Column( crossAxisAlignment: CrossAxisAlignment.center, diff --git a/lib/pages/pageAnmerkungen.dart b/lib/pages/pageAnmerkungen.dart index a0c5be0..94c7135 100644 --- a/lib/pages/pageAnmerkungen.dart +++ b/lib/pages/pageAnmerkungen.dart @@ -10,7 +10,17 @@ class PageAnmerkungen extends StatelessWidget { @override Widget build(BuildContext context) { return Center( - child: SizedBox( + child: Container( + decoration: BoxDecoration( + image: DecorationImage( + image: AssetImage("assets/backgrounds/Anmerkungen.jpg"), + fit: BoxFit.cover, + colorFilter: ColorFilter.mode( + Colors.white.withOpacity(0.2), + BlendMode.dstATop + ), + ) + ), width: 600, child: Column( crossAxisAlignment: CrossAxisAlignment.center, diff --git a/lib/pages/pageEssen.dart b/lib/pages/pageEssen.dart index c1eedbb..14b4918 100644 --- a/lib/pages/pageEssen.dart +++ b/lib/pages/pageEssen.dart @@ -11,7 +11,17 @@ class PageEssen extends StatelessWidget { @override Widget build(BuildContext context) { return Center( - child: SizedBox( + child: Container( + decoration: BoxDecoration( + image: DecorationImage( + image: AssetImage("assets/backgrounds/Essen.jpg"), + fit: BoxFit.cover, + colorFilter: ColorFilter.mode( + Colors.white.withOpacity(0.2), + BlendMode.dstATop + ), + ) + ), width: 600, child: Column( crossAxisAlignment: CrossAxisAlignment.center, diff --git a/lib/pages/pageService.dart b/lib/pages/pageService.dart index 5701e6d..1894d66 100644 --- a/lib/pages/pageService.dart +++ b/lib/pages/pageService.dart @@ -10,7 +10,17 @@ class PageService extends StatelessWidget { @override Widget build(BuildContext context) { return Center( - child: SizedBox( + child: Container( + decoration: BoxDecoration( + image: DecorationImage( + image: AssetImage("assets/backgrounds/Service.jpg"), + fit: BoxFit.cover, + colorFilter: ColorFilter.mode( + Colors.white.withOpacity(0.2), + BlendMode.dstATop + ), + ) + ), width: 600, child: Column( crossAxisAlignment: CrossAxisAlignment.center, diff --git a/lib/pages/pageSpezielleErnaehrung.dart b/lib/pages/pageSpezielleErnaehrung.dart index 0c13dd0..676c331 100644 --- a/lib/pages/pageSpezielleErnaehrung.dart +++ b/lib/pages/pageSpezielleErnaehrung.dart @@ -12,7 +12,17 @@ class PageSpezielleErnaehrung extends StatelessWidget { @override Widget build(BuildContext context) { return Center( - child: SizedBox( + child: Container( + decoration: BoxDecoration( + image: DecorationImage( + image: AssetImage("assets/backgrounds/Speziell.jpg"), + fit: BoxFit.cover, + colorFilter: ColorFilter.mode( + Colors.white.withOpacity(0.2), + BlendMode.dstATop + ), + ) + ), width: 800, child: Column( crossAxisAlignment: CrossAxisAlignment.center, diff --git a/pubspec.yaml b/pubspec.yaml index 637d68f..8c4f18c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -56,6 +56,7 @@ dev_dependencies: flutter: assets: - assets/flags/ + - assets/backgrounds/ # The following line ensures that the Material Icons font is # included with your application, so that you can use the icons in # the material Icons class.