migrate app
This commit is contained in:
@@ -6,7 +6,7 @@ import 'package:stream_chat_flutter/stream_chat_flutter.dart'
|
||||
show Channel, StreamChannel;
|
||||
|
||||
class ChannelListView extends StatelessWidget {
|
||||
const ChannelListView({Key key, @required this.channels}) : super(key: key);
|
||||
const ChannelListView({Key? key, required this.channels}) : super(key: key);
|
||||
final List<Channel> channels;
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
@@ -36,10 +36,10 @@ class ChannelListView extends StatelessWidget {
|
||||
child,
|
||||
) =>
|
||||
SharedAxisTransition(
|
||||
child: child,
|
||||
animation: animation,
|
||||
secondaryAnimation: secondaryAnimation,
|
||||
transitionType: SharedAxisTransitionType.horizontal,
|
||||
child: child,
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user