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
|
|
@ -38,10 +38,9 @@ import 'pip/pip_view.dart';
|
|||
class _StreamView extends StatelessWidget {
|
||||
const _StreamView(
|
||||
this.wrappedStream, {
|
||||
Key? key,
|
||||
this.mainView = false,
|
||||
required this.matrixClient,
|
||||
}) : super(key: key);
|
||||
});
|
||||
|
||||
final WrappedMediaStream wrappedStream;
|
||||
final Client matrixClient;
|
||||
|
|
@ -128,8 +127,8 @@ class Calling extends StatefulWidget {
|
|||
required this.client,
|
||||
required this.callId,
|
||||
this.onClear,
|
||||
Key? key,
|
||||
}) : super(key: key);
|
||||
super.key,
|
||||
});
|
||||
|
||||
@override
|
||||
MyCallingPage createState() => MyCallingPage();
|
||||
|
|
|
|||
|
|
@ -15,13 +15,13 @@ class PIPView extends StatefulWidget {
|
|||
) builder;
|
||||
|
||||
const PIPView({
|
||||
Key? key,
|
||||
super.key,
|
||||
required this.builder,
|
||||
this.initialCorner = PIPViewCorner.topRight,
|
||||
this.floatingWidth,
|
||||
this.floatingHeight,
|
||||
this.avoidKeyboard = true,
|
||||
}) : super(key: key);
|
||||
});
|
||||
|
||||
@override
|
||||
PIPViewState createState() => PIPViewState();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue