Skip to content

Commit 3a8e8cc

Browse files
committed
Merge branch 'master' into prod
2 parents 3d88c98 + b4e21e3 commit 3a8e8cc

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

example/lib/screens/custom/custom_screen.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ class _CallCapabilities extends StatelessWidget {
174174
return Column(
175175
children: [
176176
const Text("Call Capabilities"),
177-
SizedBox(height: 8),
177+
const SizedBox(height: 8),
178178
Row(
179179
mainAxisAlignment: MainAxisAlignment.center,
180180
children: CallKitCapability.values.map((e) {
@@ -216,7 +216,7 @@ class _CallTypeSelector extends StatelessWidget {
216216
return Column(
217217
children: [
218218
const Text("Call Type"),
219-
SizedBox(height: 8),
219+
const SizedBox(height: 8),
220220
Row(
221221
mainAxisAlignment: MainAxisAlignment.center,
222222
children: CallType.values.map((e) {
@@ -249,7 +249,7 @@ class _CallStateSelector extends StatelessWidget {
249249
return Column(
250250
children: [
251251
const Text("Call State"),
252-
SizedBox(height: 8),
252+
const SizedBox(height: 8),
253253
Row(
254254
mainAxisAlignment: MainAxisAlignment.center,
255255
children: CallState.values.map((e) {

example/lib/widgets/data_grid.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import 'package:flutter/material.dart';
22
import 'package:flutter/services.dart';
3-
import '../utils.dart';
43

54
class DataGridWidget extends StatefulWidget {
65
final Set<String> dataKeys;

0 commit comments

Comments
 (0)