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();
},
onTapCancel: () {
_controller.reverse();
},
borderRadius: StyleString.mdRadius,
child: SizedBox(
width: (Get.size.width - 24) / 5,

View File

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