Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
abedbc3a
Unverified
Commit
abedbc3a
authored
Apr 02, 2021
by
Sam Rawlins
Committed by
GitHub
Apr 02, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove "unnecessary" imports. (#78663)
parent
288b9411
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
0 additions
and
19 deletions
+0
-19
text_selection.dart
packages/flutter/lib/src/cupertino/text_selection.dart
+0
-1
bottom_navigation_bar.dart
packages/flutter/lib/src/material/bottom_navigation_bar.dart
+0
-1
checkbox.dart
packages/flutter/lib/src/material/checkbox.dart
+0
-4
elevated_button.dart
packages/flutter/lib/src/material/elevated_button.dart
+0
-1
flat_button.dart
packages/flutter/lib/src/material/flat_button.dart
+0
-1
outlined_button.dart
packages/flutter/lib/src/material/outlined_button.dart
+0
-1
paginated_data_table.dart
packages/flutter/lib/src/material/paginated_data_table.dart
+0
-1
radio.dart
packages/flutter/lib/src/material/radio.dart
+0
-1
text_button.dart
packages/flutter/lib/src/material/text_button.dart
+0
-1
toggleable.dart
packages/flutter/lib/src/material/toggleable.dart
+0
-3
platform_view.dart
packages/flutter/lib/src/rendering/platform_view.dart
+0
-1
proxy_box.dart
packages/flutter/lib/src/rendering/proxy_box.dart
+0
-1
default_text_editing_actions.dart
...flutter/lib/src/widgets/default_text_editing_actions.dart
+0
-2
No files found.
packages/flutter/lib/src/cupertino/text_selection.dart
View file @
abedbc3a
...
...
@@ -6,7 +6,6 @@ import 'dart:math' as math;
import
'package:flutter/widgets.dart'
;
import
'package:flutter/rendering.dart'
;
import
'package:flutter/services.dart'
;
import
'localizations.dart'
;
import
'text_selection_toolbar.dart'
;
...
...
packages/flutter/lib/src/material/bottom_navigation_bar.dart
View file @
abedbc3a
...
...
@@ -6,7 +6,6 @@ import 'dart:collection' show Queue;
import
'dart:math'
as
math
;
import
'package:flutter/widgets.dart'
;
import
'package:flutter/rendering.dart'
;
import
'package:vector_math/vector_math_64.dart'
show
Vector3
;
import
'bottom_navigation_bar_theme.dart'
;
...
...
packages/flutter/lib/src/material/checkbox.dart
View file @
abedbc3a
...
...
@@ -2,10 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'package:flutter/foundation.dart'
;
import
'package:flutter/gestures.dart'
;
import
'package:flutter/rendering.dart'
;
import
'package:flutter/widgets.dart'
;
import
'constants.dart'
;
...
...
packages/flutter/lib/src/material/elevated_button.dart
View file @
abedbc3a
...
...
@@ -6,7 +6,6 @@ import 'dart:math' as math;
import
'dart:ui'
show
lerpDouble
;
import
'package:flutter/foundation.dart'
;
import
'package:flutter/rendering.dart'
;
import
'package:flutter/widgets.dart'
;
import
'button_style.dart'
;
...
...
packages/flutter/lib/src/material/flat_button.dart
View file @
abedbc3a
...
...
@@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'package:flutter/rendering.dart'
;
import
'package:flutter/widgets.dart'
;
import
'button.dart'
;
...
...
packages/flutter/lib/src/material/outlined_button.dart
View file @
abedbc3a
...
...
@@ -6,7 +6,6 @@ import 'dart:math' as math;
import
'dart:ui'
show
lerpDouble
;
import
'package:flutter/foundation.dart'
;
import
'package:flutter/rendering.dart'
;
import
'package:flutter/widgets.dart'
;
import
'button_style.dart'
;
...
...
packages/flutter/lib/src/material/paginated_data_table.dart
View file @
abedbc3a
...
...
@@ -5,7 +5,6 @@
import
'dart:math'
as
math
;
import
'package:flutter/gestures.dart'
show
DragStartBehavior
;
import
'package:flutter/rendering.dart'
;
import
'package:flutter/widgets.dart'
;
import
'button_bar.dart'
;
...
...
packages/flutter/lib/src/material/radio.dart
View file @
abedbc3a
...
...
@@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'package:flutter/rendering.dart'
;
import
'package:flutter/widgets.dart'
;
import
'constants.dart'
;
...
...
packages/flutter/lib/src/material/text_button.dart
View file @
abedbc3a
...
...
@@ -6,7 +6,6 @@ import 'dart:math' as math;
import
'dart:ui'
show
lerpDouble
;
import
'package:flutter/foundation.dart'
;
import
'package:flutter/rendering.dart'
;
import
'package:flutter/widgets.dart'
;
import
'button_style.dart'
;
...
...
packages/flutter/lib/src/material/toggleable.dart
View file @
abedbc3a
...
...
@@ -2,9 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'package:flutter/animation.dart'
;
import
'package:flutter/foundation.dart'
;
import
'package:flutter/gestures.dart'
;
import
'package:flutter/rendering.dart'
;
import
'package:flutter/widgets.dart'
;
...
...
packages/flutter/lib/src/rendering/platform_view.dart
View file @
abedbc3a
...
...
@@ -11,7 +11,6 @@ import 'package:flutter/services.dart';
import
'box.dart'
;
import
'layer.dart'
;
import
'mouse_tracker.dart'
;
import
'object.dart'
;
...
...
packages/flutter/lib/src/rendering/proxy_box.dart
View file @
abedbc3a
...
...
@@ -15,7 +15,6 @@ import 'package:vector_math/vector_math_64.dart';
import
'box.dart'
;
import
'layer.dart'
;
import
'layout_helper.dart'
;
import
'mouse_tracker.dart'
;
import
'object.dart'
;
export
'package:flutter/gestures.dart'
show
...
...
packages/flutter/lib/src/widgets/default_text_editing_actions.dart
View file @
abedbc3a
...
...
@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'package:flutter/foundation.dart'
;
import
'actions.dart'
;
import
'editable_text.dart'
;
import
'framework.dart'
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment