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
|
import 'dart:math';
import 'package:flutter/material.dart';
class MediaPage extends StatelessWidget {
const MediaPage({Key? key}) : super(key: key);
Widget _buildLayout(BuildContext context, BoxConstraints constraints) {
// describe the layout in terms of fractions of the container size
double mainDimension = max(constraints.maxWidth, constraints.maxHeight);
//double minDimension = min(constraints.maxWidth, constraints.maxHeight);
double iconSize = mainDimension / 16.0;
return Container(
color: Colors.blueGrey.shade900,
constraints: BoxConstraints.expand(),
alignment: Alignment.center,
child: Stack(
alignment: Alignment.center,
children: [
AspectRatio(
aspectRatio: 16 / 9,
child: Container(
decoration: BoxDecoration(
gradient: LinearGradient(
begin: Alignment.bottomLeft,
end: Alignment.topRight,
colors: [
Colors.blueGrey.shade700,
Colors.blueGrey.shade400
])),
),
),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
_createMediaButton(Icons.skip_previous, iconSize, () {}),
_createMediaButton(Icons.play_arrow, iconSize, () {}),
_createMediaButton(Icons.skip_next, iconSize, () {}),
],
)
],
),
);
}
Widget _createMediaButton(
IconData icon, double iconSize, Null Function() onPressed) {
return Padding(
padding: EdgeInsets.all(iconSize / 8),
child: ElevatedButton(
onPressed: onPressed,
child: Icon(
icon,
color: Colors.blueGrey.shade700,
size: iconSize,
),
style: ElevatedButton.styleFrom(
shape: CircleBorder(),
padding: EdgeInsets.all(iconSize / 8),
primary: Colors.blueGrey.shade100,
onPrimary: Colors.white,
),
),
);
}
@override
Widget build(BuildContext context) {
return Container(
color: Colors.deepPurple.shade50,
child: Center(
child: LayoutBuilder(
builder: _buildLayout,
)));
}
}
|