build: Update packages and flutter super.key refactoring
This commit is contained in:
parent
4605a92d17
commit
eca4825c70
129 changed files with 294 additions and 324 deletions
|
|
@ -15,9 +15,9 @@ import '../../utils/localized_exception_extension.dart';
|
|||
class InvitationSelection extends StatefulWidget {
|
||||
final String roomId;
|
||||
const InvitationSelection({
|
||||
Key? key,
|
||||
super.key,
|
||||
required this.roomId,
|
||||
}) : super(key: key);
|
||||
});
|
||||
|
||||
@override
|
||||
InvitationSelectionController createState() =>
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ import 'package:fluffychat/widgets/matrix.dart';
|
|||
class InvitationSelectionView extends StatelessWidget {
|
||||
final InvitationSelectionController controller;
|
||||
|
||||
const InvitationSelectionView(this.controller, {Key? key}) : super(key: key);
|
||||
const InvitationSelectionView(this.controller, {super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
|
|
@ -142,13 +142,12 @@ class _InviteContactListTile extends StatelessWidget {
|
|||
final void Function() onTap;
|
||||
|
||||
const _InviteContactListTile({
|
||||
Key? key,
|
||||
required this.userId,
|
||||
required this.displayname,
|
||||
required this.avatarUrl,
|
||||
required this.isMember,
|
||||
required this.onTap,
|
||||
}) : super(key: key);
|
||||
});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue