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
|
|
@ -22,7 +22,7 @@ import 'package:fluffychat/widgets/matrix.dart';
|
|||
import '../../utils/matrix_sdk_extensions/client_stories_extension.dart';
|
||||
|
||||
class AddStoryPage extends StatefulWidget {
|
||||
const AddStoryPage({Key? key}) : super(key: key);
|
||||
const AddStoryPage({super.key});
|
||||
|
||||
@override
|
||||
AddStoryController createState() => AddStoryController();
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ import 'add_story.dart';
|
|||
|
||||
class AddStoryView extends StatelessWidget {
|
||||
final AddStoryController controller;
|
||||
const AddStoryView(this.controller, {Key? key}) : super(key: key);
|
||||
const AddStoryView(this.controller, {super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
|
|
|
|||
|
|
@ -14,8 +14,8 @@ class InviteStoryPage extends StatefulWidget {
|
|||
final Room? storiesRoom;
|
||||
const InviteStoryPage({
|
||||
required this.storiesRoom,
|
||||
Key? key,
|
||||
}) : super(key: key);
|
||||
super.key,
|
||||
});
|
||||
|
||||
@override
|
||||
InviteStoryPageState createState() => InviteStoryPageState();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue