Skip to content

Commit 109051a

Browse files
authored
Add a encrypted video stream for integration test of video_player's iOS 16 bug (#199)
* add a encrypted video stream (and key for decription) for integration tests of video player ios 16 bug * fix linter issue
1 parent 7063e30 commit 109051a

File tree

9 files changed

+21
-4
lines changed

9 files changed

+21
-4
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
���k
2+
hw't6���
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#EXTM3U
2+
#EXT-X-VERSION:4
3+
#EXT-X-TARGETDURATION:2
4+
#EXT-X-MEDIA-SEQUENCE:0
5+
#EXT-X-KEY:METHOD=AES-128,URI="https://flutter.github.io/assets-for-api-docs/assets/videos/hls/encrypted_bee.key",IV=0x00000000000000000000000000000000
6+
#EXTINF:2.002000,
7+
#EXT-X-BYTERANGE:702180@0
8+
encrypted_bee0.ts
9+
#EXTINF:2.002000,
10+
#EXT-X-BYTERANGE:754256@0
11+
encrypted_bee1.ts
12+
#EXTINF:0.033367,
13+
#EXT-X-BYTERANGE:31960@0
14+
encrypted_bee2.ts
15+
#EXT-X-ENDLIST
686 KB
Binary file not shown.
737 KB
Binary file not shown.
31.2 KB
Binary file not shown.

packages/diagrams/lib/src/container.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class ContainerDiagram extends StatelessWidget implements DiagramMetadata {
4646
child: Text('Hello World',
4747
style: Theme.of(context)
4848
.textTheme
49-
.headline4!
49+
.headlineMedium!
5050
.copyWith(color: Colors.white)),
5151
),
5252
),

packages/diagrams/lib/src/curve.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ class TranslateSampleTile extends StatelessWidget {
264264
Text(
265265
name,
266266
textAlign: TextAlign.center,
267-
style: Theme.of(context).textTheme.bodyText1!.copyWith(
267+
style: Theme.of(context).textTheme.bodyLarge!.copyWith(
268268
color: Colors.black,
269269
fontSize: 12.0,
270270
),

packages/diagrams/lib/src/implicit_animations.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ class AnimatedDefaultTextStyleDiagram
133133
@override
134134
Widget buildImplicitAnimation(BuildContext context, bool selected) {
135135
final TextStyle selectedStyle =
136-
Theme.of(context).textTheme.headline4!.copyWith(
136+
Theme.of(context).textTheme.headlineMedium!.copyWith(
137137
color: Colors.red,
138138
fontSize: 50.0,
139139
fontWeight: FontWeight.w100,

packages/diagrams/lib/src/theme_data.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class ThemeDataDiagram extends StatelessWidget implements DiagramMetadata {
6868
secondary: Colors.green,
6969
),
7070
textTheme: const TextTheme(
71-
bodyText2: TextStyle(color: Colors.purple)),
71+
bodyMedium: TextStyle(color: Colors.purple)),
7272
),
7373
home: Stack(
7474
children: <Widget>[

0 commit comments

Comments
 (0)