Merge branch 'design'

This commit is contained in:
guozhigq
2024-08-11 23:49:13 +08:00
2 changed files with 4 additions and 1 deletions

View File

@ -613,6 +613,9 @@ class _VideoInfoState extends State<VideoInfo> with TickerProviderStateMixin {
} }
_controller.reverse(); _controller.reverse();
}, },
onTapCancel: () {
_controller.reverse();
},
borderRadius: StyleString.mdRadius, borderRadius: StyleString.mdRadius,
child: SizedBox( child: SizedBox(
width: (Get.size.width - 24) / 5, width: (Get.size.width - 24) / 5,

View File

@ -57,7 +57,7 @@ Future imageSaveDialog(context, videoItem, closeFn) {
child: Row( child: Row(
children: [ children: [
Expanded( Expanded(
child: Text( child: SelectableText(
videoItem.title! as String, videoItem.title! as String,
style: Theme.of(context).textTheme.titleSmall, style: Theme.of(context).textTheme.titleSmall,
), ),