🐛 Fix scroll auto scroll back
This commit is contained in:
parent
665615ae70
commit
456bac67f2
@ -110,9 +110,10 @@ class _AttachmentItemState extends State<AttachmentItem> {
|
|||||||
child: ActionChip(
|
child: ActionChip(
|
||||||
visualDensity:
|
visualDensity:
|
||||||
const VisualDensity(vertical: -4, horizontal: -4),
|
const VisualDensity(vertical: -4, horizontal: -4),
|
||||||
avatar: Icon(Icons.visibility_off,
|
avatar: Icon(
|
||||||
color:
|
Icons.visibility_off,
|
||||||
Theme.of(context).colorScheme.onSurfaceVariant),
|
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||||
|
),
|
||||||
label: Text('hide'.tr),
|
label: Text('hide'.tr),
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
if (widget.onHide != null) widget.onHide!();
|
if (widget.onHide != null) widget.onHide!();
|
||||||
|
@ -97,19 +97,14 @@ class _AttachmentListState extends State<AttachmentList> {
|
|||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
if (widget.attachmentsId.isEmpty) {
|
if (widget.attachmentsId.isEmpty) {
|
||||||
return Container();
|
return const SizedBox();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_isLoading) {
|
if (_isLoading) {
|
||||||
return AspectRatio(
|
return Container(
|
||||||
aspectRatio: _aspectRatio,
|
decoration: BoxDecoration(
|
||||||
child: Container(
|
color: Theme.of(context).colorScheme.surfaceContainerHigh),
|
||||||
decoration: BoxDecoration(
|
child: const LinearProgressIndicator(),
|
||||||
color: Theme.of(context).colorScheme.surfaceContainerHigh),
|
|
||||||
child: const Center(
|
|
||||||
child: CircularProgressIndicator(),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user