Merge branch 'feature-replyItem'
This commit is contained in:
@ -925,14 +925,13 @@ class MorePanel extends StatelessWidget {
|
|||||||
Color errorColor = Theme.of(context).colorScheme.error;
|
Color errorColor = Theme.of(context).colorScheme.error;
|
||||||
return Container(
|
return Container(
|
||||||
padding: EdgeInsets.only(bottom: MediaQuery.of(context).padding.bottom),
|
padding: EdgeInsets.only(bottom: MediaQuery.of(context).padding.bottom),
|
||||||
// clipBehavior: Clip.hardEdge,
|
|
||||||
child: Column(
|
child: Column(
|
||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
children: [
|
children: [
|
||||||
InkWell(
|
InkWell(
|
||||||
onTap: () => Get.back(),
|
onTap: () => Get.back(),
|
||||||
child: Container(
|
child: Container(
|
||||||
height: 48,
|
height: 35,
|
||||||
padding: const EdgeInsets.only(bottom: 2),
|
padding: const EdgeInsets.only(bottom: 2),
|
||||||
child: Center(
|
child: Center(
|
||||||
child: Container(
|
child: Container(
|
||||||
@ -948,14 +947,14 @@ class MorePanel extends StatelessWidget {
|
|||||||
ListTile(
|
ListTile(
|
||||||
onTap: () async => await menuActionHandler('copyAll'),
|
onTap: () async => await menuActionHandler('copyAll'),
|
||||||
minLeadingWidth: 0,
|
minLeadingWidth: 0,
|
||||||
leading: const Icon(Icons.copy_all_outlined),
|
leading: const Icon(Icons.copy_all_outlined, size: 19),
|
||||||
title: const Text('复制全部'),
|
title: Text('复制全部', style: Theme.of(context).textTheme.titleSmall),
|
||||||
),
|
),
|
||||||
ListTile(
|
ListTile(
|
||||||
onTap: () async => await menuActionHandler('copyFreedom'),
|
onTap: () async => await menuActionHandler('copyFreedom'),
|
||||||
minLeadingWidth: 0,
|
minLeadingWidth: 0,
|
||||||
leading: const Icon(Icons.copy_outlined),
|
leading: const Icon(Icons.copy_outlined, size: 19),
|
||||||
title: const Text('自由复制'),
|
title: Text('自由复制', style: Theme.of(context).textTheme.titleSmall),
|
||||||
),
|
),
|
||||||
// ListTile(
|
// ListTile(
|
||||||
// onTap: () async => await menuActionHandler('block'),
|
// onTap: () async => await menuActionHandler('block'),
|
||||||
|
|||||||
Reference in New Issue
Block a user