mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-02 18:19:30 +01:00
70f96bfee8
Added the ability for the software keyboard to be dismissed when scrolling on a ListView in a chat and the chat list. This will help iOS users since they don't have a back button like Android.
74 lines
2.2 KiB
Dart
74 lines
2.2 KiB
Dart
import 'package:adaptive_page_layout/adaptive_page_layout.dart';
|
|
import 'package:famedlysdk/famedlysdk.dart';
|
|
import 'package:fluffychat/components/image_bubble.dart';
|
|
import 'package:fluffychat/components/matrix.dart';
|
|
import 'package:flutter/material.dart';
|
|
import '../utils/event_extension.dart';
|
|
import '../utils/platform_infos.dart';
|
|
|
|
class ImageView extends StatelessWidget {
|
|
final Event event;
|
|
final void Function() onLoaded;
|
|
|
|
const ImageView(this.event, {Key key, this.onLoaded}) : super(key: key);
|
|
|
|
void _forwardAction(BuildContext context) async {
|
|
Matrix.of(context).shareContent = event.content;
|
|
AdaptivePageLayout.of(context).popUntilIsFirst();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
var calcVelocity = MediaQuery.of(context).size.height * 1.50;
|
|
|
|
return Scaffold(
|
|
backgroundColor: Colors.black,
|
|
extendBodyBehindAppBar: true,
|
|
appBar: AppBar(
|
|
elevation: 0,
|
|
leading: IconButton(
|
|
icon: Icon(Icons.close),
|
|
onPressed: () => Navigator.of(context).pop(),
|
|
color: Colors.white,
|
|
),
|
|
backgroundColor: Color(0x44000000),
|
|
actions: [
|
|
IconButton(
|
|
icon: Icon(Icons.reply_outlined),
|
|
onPressed: () => _forwardAction(context),
|
|
color: Colors.white,
|
|
),
|
|
IconButton(
|
|
icon: Icon(Icons.download_outlined),
|
|
onPressed: () => event.openFile(context, downloadOnly: true),
|
|
color: Colors.white,
|
|
),
|
|
],
|
|
),
|
|
body: InteractiveViewer(
|
|
child: Center(
|
|
child: ImageBubble(
|
|
event,
|
|
tapToView: false,
|
|
onLoaded: onLoaded,
|
|
fit: BoxFit.contain,
|
|
backgroundColor: Colors.black,
|
|
maxSize: false,
|
|
radius: 0.0,
|
|
thumbnailOnly: false,
|
|
),
|
|
),
|
|
minScale: 1.0,
|
|
maxScale: 10.0,
|
|
onInteractionEnd: (ScaleEndDetails endDetails) {
|
|
if (PlatformInfos.usesTouchscreen == false) {
|
|
if (endDetails.velocity.pixelsPerSecond.dy > calcVelocity) {
|
|
Navigator.of(context).pop();
|
|
}
|
|
}
|
|
},
|
|
),
|
|
);
|
|
}
|
|
}
|