2020-02-14 07:32:21 +01:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
2020-07-08 21:48:41 +02:00
|
|
|
enum SlideDirection { up, down }
|
|
|
|
|
2020-02-14 07:32:21 +01:00
|
|
|
class AudioPanel extends StatefulWidget {
|
|
|
|
final Widget miniPanel;
|
|
|
|
final Widget expandedPanel;
|
2020-07-08 21:48:41 +02:00
|
|
|
final double minHeight;
|
|
|
|
final double maxHeight;
|
|
|
|
AudioPanel(
|
|
|
|
{@required this.miniPanel,
|
|
|
|
@required this.expandedPanel,
|
|
|
|
this.minHeight = 60,
|
|
|
|
this.maxHeight = 300,
|
|
|
|
Key key})
|
|
|
|
: super(key: key);
|
2020-02-14 07:32:21 +01:00
|
|
|
@override
|
|
|
|
_AudioPanelState createState() => _AudioPanelState();
|
|
|
|
}
|
|
|
|
|
2020-07-08 21:48:41 +02:00
|
|
|
class _AudioPanelState extends State<AudioPanel> with TickerProviderStateMixin {
|
2020-02-14 07:32:21 +01:00
|
|
|
double initSize;
|
|
|
|
double _startdy;
|
|
|
|
double _move = 0;
|
|
|
|
AnimationController _controller;
|
2020-07-08 21:48:41 +02:00
|
|
|
AnimationController _slowController;
|
2020-06-06 11:05:38 +02:00
|
|
|
Animation _animation;
|
2020-07-08 21:48:41 +02:00
|
|
|
SlideDirection _slideDirection;
|
2020-02-14 07:32:21 +01:00
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
2020-07-08 21:48:41 +02:00
|
|
|
initSize = widget.minHeight;
|
|
|
|
_slideDirection = SlideDirection.up;
|
2020-02-14 07:32:21 +01:00
|
|
|
_controller =
|
2020-06-04 19:13:29 +02:00
|
|
|
AnimationController(vsync: this, duration: Duration(milliseconds: 50))
|
2020-02-14 07:32:21 +01:00
|
|
|
..addListener(() {
|
2020-07-22 11:34:32 +02:00
|
|
|
if (mounted) setState(() {});
|
2020-02-14 07:32:21 +01:00
|
|
|
});
|
2020-07-08 21:48:41 +02:00
|
|
|
_slowController =
|
|
|
|
AnimationController(vsync: this, duration: Duration(milliseconds: 200))
|
|
|
|
..addListener(() {
|
2020-07-22 11:34:32 +02:00
|
|
|
if (mounted) setState(() {});
|
2020-07-08 21:48:41 +02:00
|
|
|
});
|
2020-02-14 07:32:21 +01:00
|
|
|
_animation =
|
|
|
|
Tween<double>(begin: initSize, end: initSize).animate(_controller);
|
2020-02-14 12:52:03 +01:00
|
|
|
super.initState();
|
2020-02-14 07:32:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
_controller.dispose();
|
2020-07-08 21:48:41 +02:00
|
|
|
_slowController.dispose();
|
2020-02-14 07:32:21 +01:00
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2020-02-14 12:52:03 +01:00
|
|
|
return Stack(children: <Widget>[
|
|
|
|
Container(
|
2020-07-08 21:48:41 +02:00
|
|
|
child: (_animation.value > widget.minHeight + 30)
|
2020-02-14 12:52:03 +01:00
|
|
|
? Positioned.fill(
|
|
|
|
child: GestureDetector(
|
|
|
|
onTap: () => _backToMini(),
|
|
|
|
child: Container(
|
2020-02-25 10:57:12 +01:00
|
|
|
color: Theme.of(context)
|
|
|
|
.scaffoldBackgroundColor
|
2020-07-22 18:06:44 +02:00
|
|
|
.withOpacity(0.8),
|
2020-02-14 12:52:03 +01:00
|
|
|
),
|
2020-02-14 07:32:21 +01:00
|
|
|
),
|
|
|
|
)
|
2020-02-14 12:52:03 +01:00
|
|
|
: Center(),
|
|
|
|
),
|
|
|
|
Container(
|
|
|
|
alignment: Alignment.bottomCenter,
|
|
|
|
child: GestureDetector(
|
|
|
|
onVerticalDragStart: (event) => _start(event),
|
|
|
|
onVerticalDragUpdate: (event) => _update(event),
|
|
|
|
onVerticalDragEnd: (event) => _end(),
|
|
|
|
child: Container(
|
2020-07-08 21:48:41 +02:00
|
|
|
height: (_animation.value >= widget.maxHeight)
|
|
|
|
? widget.maxHeight
|
|
|
|
: (_animation.value <= widget.minHeight)
|
|
|
|
? widget.minHeight
|
|
|
|
: _animation.value,
|
|
|
|
child: _animation.value < widget.minHeight + 30
|
2020-02-14 12:52:03 +01:00
|
|
|
? Container(
|
2020-02-22 13:25:06 +01:00
|
|
|
color: Theme.of(context).primaryColor,
|
2020-02-14 12:52:03 +01:00
|
|
|
child: Opacity(
|
2020-07-08 21:48:41 +02:00
|
|
|
opacity: _animation.value > widget.minHeight
|
|
|
|
? (widget.minHeight + 30 - _animation.value) / 40
|
2020-02-14 12:52:03 +01:00
|
|
|
: 1,
|
|
|
|
child: Container(
|
|
|
|
child: widget.miniPanel,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
: Container(
|
2020-02-25 10:57:12 +01:00
|
|
|
decoration: BoxDecoration(
|
|
|
|
color: Theme.of(context).primaryColor,
|
|
|
|
boxShadow: [
|
|
|
|
BoxShadow(
|
2020-03-19 20:58:30 +01:00
|
|
|
offset: Offset(0, -0.5),
|
|
|
|
blurRadius: 1,
|
2020-06-04 19:13:29 +02:00
|
|
|
color:
|
|
|
|
Theme.of(context).brightness == Brightness.light
|
|
|
|
? Colors.grey[400].withOpacity(0.5)
|
|
|
|
: Colors.grey[800],
|
2020-02-25 10:57:12 +01:00
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2020-02-14 12:52:03 +01:00
|
|
|
child: SingleChildScrollView(
|
2020-07-08 21:48:41 +02:00
|
|
|
physics: const NeverScrollableScrollPhysics(),
|
2020-02-14 12:52:03 +01:00
|
|
|
child: Opacity(
|
2020-07-08 21:48:41 +02:00
|
|
|
opacity: _animation.value < (widget.maxHeight - 50)
|
|
|
|
? (_animation.value - widget.minHeight) /
|
|
|
|
(widget.maxHeight - widget.minHeight - 50)
|
2020-02-14 12:52:03 +01:00
|
|
|
: 1,
|
|
|
|
child: Container(
|
2020-07-08 21:48:41 +02:00
|
|
|
height: widget.maxHeight,
|
2020-02-14 12:52:03 +01:00
|
|
|
child: widget.expandedPanel,
|
|
|
|
),
|
|
|
|
),
|
2020-02-14 07:32:21 +01:00
|
|
|
),
|
|
|
|
),
|
2020-02-14 12:52:03 +01:00
|
|
|
),
|
|
|
|
),
|
2020-02-14 07:32:21 +01:00
|
|
|
),
|
2020-02-14 12:52:03 +01:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
_backToMini() {
|
|
|
|
setState(() {
|
2020-07-08 21:48:41 +02:00
|
|
|
_animation = Tween<double>(begin: initSize, end: widget.minHeight)
|
|
|
|
.animate(_slowController);
|
|
|
|
initSize = widget.minHeight;
|
2020-02-14 12:52:03 +01:00
|
|
|
});
|
2020-07-08 21:48:41 +02:00
|
|
|
_slowController.forward();
|
2020-02-14 07:32:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
_start(DragStartDetails event) {
|
|
|
|
setState(() {
|
|
|
|
_startdy = event.localPosition.dy;
|
2020-02-14 12:52:03 +01:00
|
|
|
_animation =
|
|
|
|
Tween<double>(begin: initSize, end: initSize).animate(_controller);
|
2020-02-14 07:32:21 +01:00
|
|
|
});
|
|
|
|
_controller.forward();
|
|
|
|
}
|
|
|
|
|
|
|
|
_update(DragUpdateDetails event) {
|
|
|
|
setState(() {
|
|
|
|
_move = _startdy - event.localPosition.dy;
|
|
|
|
_animation = Tween<double>(begin: initSize, end: initSize + _move)
|
|
|
|
.animate(_controller);
|
2020-07-08 21:48:41 +02:00
|
|
|
_slideDirection = _move > 0 ? SlideDirection.up : SlideDirection.down;
|
2020-02-14 07:32:21 +01:00
|
|
|
});
|
|
|
|
_controller.forward();
|
|
|
|
}
|
|
|
|
|
|
|
|
_end() {
|
2020-07-08 21:48:41 +02:00
|
|
|
if (_slideDirection == SlideDirection.up) {
|
|
|
|
if (_move > 20) {
|
|
|
|
setState(() {
|
|
|
|
_animation =
|
|
|
|
Tween<double>(begin: _animation.value, end: widget.maxHeight)
|
|
|
|
.animate(_slowController);
|
|
|
|
initSize = widget.maxHeight;
|
|
|
|
});
|
|
|
|
_slowController.forward();
|
|
|
|
} else {
|
|
|
|
setState(() {
|
|
|
|
_animation =
|
|
|
|
Tween<double>(begin: _animation.value, end: widget.minHeight)
|
|
|
|
.animate(_controller);
|
|
|
|
initSize = widget.minHeight;
|
|
|
|
});
|
|
|
|
_controller.forward();
|
|
|
|
}
|
|
|
|
} else if (_slideDirection == SlideDirection.down) {
|
|
|
|
if (_move > -50) {
|
|
|
|
setState(() {
|
|
|
|
_animation =
|
|
|
|
Tween<double>(begin: _animation.value, end: widget.maxHeight)
|
|
|
|
.animate(_slowController);
|
|
|
|
initSize = widget.maxHeight;
|
|
|
|
});
|
|
|
|
_slowController.forward();
|
|
|
|
} else {
|
|
|
|
setState(() {
|
|
|
|
_animation =
|
|
|
|
Tween<double>(begin: _animation.value, end: widget.minHeight)
|
|
|
|
.animate(_controller);
|
|
|
|
initSize = widget.minHeight;
|
|
|
|
});
|
|
|
|
_controller.forward();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (_animation.value >= widget.maxHeight) {
|
2020-02-14 07:32:21 +01:00
|
|
|
setState(() {
|
2020-07-08 21:48:41 +02:00
|
|
|
initSize = widget.maxHeight;
|
2020-02-14 07:32:21 +01:00
|
|
|
});
|
2020-07-08 21:48:41 +02:00
|
|
|
} else if (_animation.value < widget.minHeight) {
|
2020-02-14 07:32:21 +01:00
|
|
|
setState(() {
|
2020-07-08 21:48:41 +02:00
|
|
|
initSize = widget.minHeight;
|
2020-02-14 07:32:21 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|