remove images

This commit is contained in:
Dieter Plaetinck
2024-06-05 16:55:12 +02:00
parent ac466f0b75
commit 378a0fe55f
7 changed files with 0 additions and 17 deletions

View File

@@ -89,7 +89,6 @@ class NutritionalPlanScreen extends StatelessWidget {
slivers: <Widget>[
SliverAppBar(
foregroundColor: appBarForeground,
expandedHeight: 250,
pinned: true,
iconTheme: const IconThemeData(color: appBarForeground),
actions: [
@@ -156,10 +155,6 @@ class NutritionalPlanScreen extends StatelessWidget {
nutritionalPlan.getLabel(context),
style: Theme.of(context).textTheme.titleLarge?.copyWith(color: appBarForeground),
),
background: const Image(
image: AssetImage('assets/images/backgrounds/nutritional_plans.jpg'),
fit: BoxFit.cover,
),
),
),
FutureBuilder(

View File

@@ -77,7 +77,6 @@ class _WorkoutPlanScreenState extends State<WorkoutPlanScreen> {
body: CustomScrollView(
slivers: <Widget>[
SliverAppBar(
expandedHeight: 250,
pinned: true,
iconTheme: const IconThemeData(color: appBarForeground),
backgroundColor: wgerPrimaryColor,
@@ -87,10 +86,6 @@ class _WorkoutPlanScreenState extends State<WorkoutPlanScreen> {
workoutPlan.name,
style: Theme.of(context).textTheme.titleLarge?.copyWith(color: appBarForeground),
),
background: const Image(
image: AssetImage('assets/images/backgrounds/workout_plans.jpg'),
fit: BoxFit.cover,
),
),
actions: [
PopupMenuButton<WorkoutOptions>(