Merge branch 'develop' into v4

This commit is contained in:
Salvatore Giordano
2022-04-29 16:24:12 +02:00
80 changed files with 607 additions and 180 deletions
@@ -1,3 +1,5 @@
// ignore_for_file: deprecated_member_use_from_same_package
import 'dart:async';
import 'dart:convert';
@@ -1,3 +1,5 @@
// ignore_for_file: deprecated_member_use_from_same_package
import 'dart:async';
import 'package:flutter/material.dart';
@@ -1,3 +1,5 @@
// ignore_for_file: deprecated_member_use_from_same_package
import 'package:flutter/material.dart';
import 'package:rxdart/rxdart.dart';
import 'package:stream_chat/stream_chat.dart';
@@ -1,3 +1,5 @@
// ignore_for_file: deprecated_member_use_from_same_package
import 'dart:convert';
import 'package:flutter/foundation.dart';
@@ -463,7 +463,8 @@ class PagedValueGridView<K, V> extends StatefulWidget {
/// only scroll the view if it has sufficient content. See [physics].
///
/// Also when true, the scroll view is used for default [ScrollAction]s. If a
/// ScrollAction is not handled by an otherwise focused part of the application,
/// ScrollAction is not handled by
/// an otherwise focused part of the application,
/// the ScrollAction will be evaluated using this scroll view, for example,
/// when executing [Shortcuts] key events like page up and down.
///
@@ -593,7 +594,8 @@ class PagedValueGridView<K, V> extends StatefulWidget {
///
/// See also:
///
/// * [SemanticsConfiguration.scrollChildCount], the corresponding semantics property.
/// * [SemanticsConfiguration.scrollChildCount], the corresponding
/// semantics property.
final int? semanticChildCount;
/// {@macro flutter.widgets.scrollable.dragStartBehavior}
@@ -49,6 +49,7 @@ class StreamChannelListEventHandler {
/// This event is fired when a channel is updated.
///
/// By default, this updates the channel received in the event.
// ignore: no-empty-block
void onChannelUpdated(Event event, StreamChannelListController controller) {}
/// Function which gets called for the event
@@ -274,8 +274,9 @@ class StreamMessageInputController extends ValueNotifier<Message> {
/// A [RestorableProperty] that knows how to store and restore a
/// [StreamMessageInputController].
///
/// The [StreamMessageInputController] is accessible via the [value] getter. During
/// state restoration, the property will restore [StreamMessageInputController.value]
/// The [StreamMessageInputController] is accessible via the [value] getter.
/// During state restoration,
/// the property will restore [StreamMessageInputController.value]
/// to the value it had when the restoration data it is getting restored from
/// was collected.
class StreamRestorableMessageInputController
@@ -1,3 +1,5 @@
// ignore_for_file: deprecated_member_use_from_same_package
import 'dart:convert';
import 'package:flutter/foundation.dart';
@@ -1,3 +1,5 @@
// ignore_for_file: deprecated_member_use_from_same_package
import 'package:flutter/material.dart';
import 'package:rxdart/rxdart.dart';
import 'package:stream_chat_flutter_core/src/stream_controller_extension.dart';