Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kenzieschmoll committed Aug 24, 2023
1 parent cedabb0 commit d0a0211
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/devtools_app_shared/example/ui/split_example.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import 'package:flutter/material.dart';
/// Example of using the [Split] widget from
/// 'package:devtools_app_shared/ui.dart' with two children laid across a
/// horizontal axis.
///
///
/// This example does not specify the [Split.splitters] parameter, so a
/// default splitter is used.
class SplitExample extends StatelessWidget {
Expand All @@ -31,7 +31,7 @@ class SplitExample extends StatelessWidget {
/// Example of using the [Split] widget from
/// 'package:devtools_app_shared/ui.dart' with three children laid across a
/// vertical axis.
///
///
/// This example uses custom splitters.
class MultiSplitExample extends StatelessWidget {
const MultiSplitExample({super.key});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ class _MyStatefulWidgetState extends State<MyStatefulWidget>
}
}

/// This is an example of a controller that uses the
/// This is an example of a controller that uses the
/// [AutoDisposeControllerMixin] exposed by
/// 'package:devtools_app_shared/utils.dart'.
///
///
/// When [dispose] is called on this controller, any listeners or stream
/// subscriptions added using the [AutoDisposeControllerMixin] will be disposed
/// or canceled.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -399,8 +399,7 @@ class EvalOnDartLibrary extends DisposableController

// start awaiting the event before starting the evaluation, in case the
// event is received before the eval function completes.
final future =
serviceManager.service!.onExtensionEvent.firstWhere((event) {
final future = serviceManager.service!.onExtensionEvent.firstWhere((event) {
return event.extensionKind == 'future_completed' &&
event.extensionData!.data['future_id'] == futureId &&
// Using `_clientId` here as if two chrome tabs open the devtool, it is
Expand Down

0 comments on commit d0a0211

Please sign in to comment.