fix: Design
This commit is contained in:
parent
2721f26315
commit
117ee6abb1
3 changed files with 3 additions and 22 deletions
|
|
@ -32,7 +32,6 @@ class ChatList extends StatefulWidget {
|
|||
}
|
||||
|
||||
class ChatListController extends State<ChatList> {
|
||||
final ScrollController scrollController = ScrollController();
|
||||
StreamSubscription _intentDataStreamSubscription;
|
||||
|
||||
StreamSubscription _intentFileStreamSubscription;
|
||||
|
|
@ -43,15 +42,6 @@ class ChatListController extends State<ChatList> {
|
|||
|
||||
String get activeChat => VRouter.of(context).pathParameters['roomid'];
|
||||
|
||||
bool scrolledTop = true;
|
||||
|
||||
void updateScrolledTop() {
|
||||
final newScrolledTop = scrollController.offset == 0;
|
||||
if (scrolledTop != newScrolledTop) {
|
||||
setState(() => scrolledTop = newScrolledTop);
|
||||
}
|
||||
}
|
||||
|
||||
void _processIncomingSharedFiles(List<SharedMediaFile> files) {
|
||||
if (files?.isEmpty ?? true) return;
|
||||
VRouter.of(context).push('/rooms');
|
||||
|
|
@ -119,7 +109,6 @@ class ChatListController extends State<ChatList> {
|
|||
@override
|
||||
void initState() {
|
||||
_initReceiveSharingIntent();
|
||||
scrollController.addListener(updateScrolledTop);
|
||||
super.initState();
|
||||
}
|
||||
|
||||
|
|
@ -128,7 +117,6 @@ class ChatListController extends State<ChatList> {
|
|||
_intentDataStreamSubscription?.cancel();
|
||||
_intentFileStreamSubscription?.cancel();
|
||||
_intentUriStreamSubscription?.cancel();
|
||||
scrollController.removeListener(updateScrolledTop);
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue