Skip to content

Commit

Permalink
[flutter_webrtc] Fix analyze issue (#722)
Browse files Browse the repository at this point in the history
  • Loading branch information
JSUYA authored Aug 21, 2024
1 parent a76b6ae commit 473c0c6
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions packages/flutter_webrtc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## NEXT

* Update minimum Flutter and Dart version to 3.13 and 3.1.
* Fix analyze issue.

## 0.1.3

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ class ScreenSelectDialog extends Dialog {
),
Container(
width: double.infinity,
child: ButtonBar(
child: OverflowBar(
children: <Widget>[
MaterialButton(
child: Text(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ class ScreenSelectDialog extends Dialog {
),
Container(
width: double.infinity,
child: ButtonBar(
child: OverflowBar(
children: <Widget>[
MaterialButton(
child: Text(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Future<bool> startForegroundService() async {
final androidConfig = FlutterBackgroundAndroidConfig(
notificationTitle: 'Title of the notification',
notificationText: 'Text of the notification',
notificationImportance: AndroidNotificationImportance.Default,
notificationImportance: AndroidNotificationImportance.normal,
notificationIcon: AndroidResource(
name: 'background_icon',
defType: 'drawable'), // Default is ic_launcher from folder mipmap
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class _GetDisplayMediaSampleState extends State<GetDisplayMediaSample> {
const androidConfig = FlutterBackgroundAndroidConfig(
notificationTitle: 'Screen Sharing',
notificationText: 'LiveKit Example is sharing the screen.',
notificationImportance: AndroidNotificationImportance.Default,
notificationImportance: AndroidNotificationImportance.normal,
notificationIcon: AndroidResource(
name: 'livekit_ic_launcher', defType: 'mipmap'),
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@ class _MyAppState extends State<LoopBackSampleUnifiedTracks> {
),
Align(
alignment: Alignment.bottomCenter,
child: ButtonBar(
child: OverflowBar(
children: [
FloatingActionButton(
heroTag: null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ class ScreenSelectDialog extends Dialog {
),
Container(
width: double.infinity,
child: ButtonBar(
child: OverflowBar(
children: <Widget>[
MaterialButton(
child: Text(
Expand Down

0 comments on commit 473c0c6

Please sign in to comment.