We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2388b2c commit 52b7c88Copy full SHA for 52b7c88
example/lib/src/callscreen.dart
@@ -484,9 +484,7 @@ class _MyCallScreenWidget extends State<CallScreenWidget>
484
));
485
}
486
487
- return Stack(
488
- children: <Widget>[
489
- ...stackWidgets,
+ stackWidgets.addAll([
490
Positioned(
491
top: voiceonly ? 48 : 6,
492
left: 0,
@@ -522,7 +520,10 @@ class _MyCallScreenWidget extends State<CallScreenWidget>
522
520
],
523
521
)),
524
),
525
- ],
+ ]);
+
+ return Stack(
526
+ children: stackWidgets,
527
);
528
529
example/pubspec.yaml
@@ -15,6 +15,7 @@ version: 1.0.0+1
15
16
environment:
17
sdk: ">=2.2.0 <3.0.0"
18
+ flutter: ">=1.10.0"
19
20
dependencies:
21
flutter:
0 commit comments