Skip to content
Draft

Draft #184178

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dev/bots/allowlist.dart
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ const Set<String> kCorePackageAllowList = <String>{
'sync_http',
'term_glyph',
'test_api',
'ui_primitives',
'vector_math',
'vm_service',
'webdriver',
Expand Down
4 changes: 1 addition & 3 deletions packages/flutter/lib/foundation.dart
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ export 'src/foundation/collections.dart';
export 'src/foundation/consolidate_response.dart';
export 'src/foundation/constants.dart';
export 'src/foundation/debug.dart';
export 'src/foundation/diagnostics.dart';
export 'src/foundation/error_dumper.dart';
export 'src/foundation/isolates.dart';
export 'src/foundation/key.dart';
Expand All @@ -46,10 +45,9 @@ export 'src/foundation/object.dart';
export 'src/foundation/observer_list.dart';
export 'src/foundation/persistent_hash_map.dart';
export 'src/foundation/platform.dart';
export 'src/foundation/print.dart';
export 'src/foundation/serialization.dart';
export 'src/foundation/service_extensions.dart';
export 'src/foundation/stack_frame.dart';
export 'src/foundation/synchronous_future.dart';
export 'src/foundation/timeline.dart';
export 'src/foundation/ui_primitives.dart' hide ValueNotifier, VoidCallback;
export 'src/foundation/unicode.dart';
2 changes: 1 addition & 1 deletion packages/flutter/lib/src/foundation/_error_dumper_io.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'print.dart';
import 'ui_primitives.dart';

/// Dumps error messages to the console.
class ErrorToConsoleDumper {
Expand Down
2 changes: 1 addition & 1 deletion packages/flutter/lib/src/foundation/_platform_io.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
// found in the LICENSE file.

import 'dart:io';
import 'assertions.dart';
import 'constants.dart';
import 'platform.dart' as platform;
import 'ui_primitives.dart';

export 'platform.dart' show TargetPlatform;

Expand Down
Loading