-
Notifications
You must be signed in to change notification settings - Fork 710
/
Copy pathevent_backdrop_photo.dart
160 lines (142 loc) · 3.81 KB
/
event_backdrop_photo.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
import 'dart:ui' as ui;
import 'package:core/core.dart';
import 'package:flutter/material.dart';
import 'package:inkino/assets.dart';
import 'package:inkino/ui/event_details/event_details_scroll_effects.dart';
import 'package:meta/meta.dart';
class EventBackdropPhoto extends StatelessWidget {
const EventBackdropPhoto({
@required this.event,
@required this.scrollEffects,
});
final Event event;
final EventDetailsScrollEffects scrollEffects;
@override
Widget build(BuildContext context) {
return ClipRect(
child: Stack(
children: [
_BackdropPhoto(event, scrollEffects),
_BlurOverlay(scrollEffects),
_InsetShadow(),
],
),
);
}
}
class _BackdropPhoto extends StatelessWidget {
_BackdropPhoto(this.event, this.scrollEffects);
final Event event;
final EventDetailsScrollEffects scrollEffects;
@override
Widget build(BuildContext context) {
return Stack(
alignment: Alignment.center,
children: [
_PlaceholderBackground(scrollEffects.backdropHeight),
_BackdropImage(event, scrollEffects),
],
);
}
}
class _PlaceholderBackground extends StatelessWidget {
_PlaceholderBackground(this.height);
final double height;
@override
Widget build(BuildContext context) {
final decoration = const BoxDecoration(
gradient: LinearGradient(
begin: Alignment.bottomCenter,
end: Alignment.topCenter,
colors: [
Color(0xFF222222),
Color(0xFF424242),
],
),
);
return Container(
width: MediaQuery.of(context).size.width,
height: height,
decoration: decoration,
child: const Center(
child: Icon(
Icons.theaters,
color: Colors.white30,
size: 96.0,
),
),
);
}
}
class _BackdropImage extends StatelessWidget {
_BackdropImage(this.event, this.scrollEffects);
final Event event;
final EventDetailsScrollEffects scrollEffects;
String get photoUrl =>
event.images.landscapeBig ?? event.images.landscapeSmall;
@override
Widget build(BuildContext context) {
if (photoUrl == null) {
return const SizedBox.shrink();
}
final screenWidth = MediaQuery.of(context).size.width;
return SizedBox(
width: screenWidth,
height: scrollEffects.backdropHeight,
child: FadeInImage.assetNetwork(
fadeInDuration: const Duration(milliseconds: 300),
placeholder: ImageAssets.transparentImage,
image: photoUrl,
width: screenWidth,
height: scrollEffects.backdropHeight,
fit: BoxFit.cover,
),
);
}
}
class _BlurOverlay extends StatelessWidget {
_BlurOverlay(this.scrollEffects);
final EventDetailsScrollEffects scrollEffects;
@override
Widget build(BuildContext context) {
return BackdropFilter(
filter: ui.ImageFilter.blur(
sigmaX: scrollEffects.backdropOverlayBlur,
sigmaY: scrollEffects.backdropOverlayBlur,
),
child: Container(
width: MediaQuery.of(context).size.width,
height: scrollEffects.backdropHeight,
decoration: BoxDecoration(
color: Colors.black.withOpacity(
scrollEffects.backdropOverlayOpacity * 0.4,
),
),
),
);
}
}
class _InsetShadow extends StatelessWidget {
@override
Widget build(BuildContext context) {
final screenWidth = MediaQuery.of(context).size.width;
return Positioned(
bottom: -8.0,
child: DecoratedBox(
decoration: const BoxDecoration(
boxShadow: [
BoxShadow(
color: Colors.black38,
blurRadius: 5.0,
spreadRadius: 3.0,
),
],
),
child: SizedBox(
width: screenWidth,
height: 10.0,
),
),
);
}
}