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
571e2e84
Commit
571e2e84
authored
Apr 13, 2016
by
Ian Hickson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stop importing identifiers we don't use. (#3314)
parent
8303cec2
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
animation.dart
packages/flutter/lib/src/animation/animation.dart
+1
-1
tween.dart
packages/flutter/lib/src/animation/tween.dart
+1
-1
theme_data.dart
packages/flutter/lib/src/material/theme_data.dart
+1
-1
app.dart
packages/flutter/lib/src/widgets/app.dart
+1
-1
asset_vendor_test.dart
packages/flutter/test/widget/asset_vendor_test.dart
+1
-1
No files found.
packages/flutter/lib/src/animation/animation.dart
View file @
571e2e84
...
...
@@ -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
'dart:ui'
show
Color
,
Size
,
Rect
,
VoidCallback
;
import
'dart:ui'
show
VoidCallback
;
/// The status of an animation
enum
AnimationStatus
{
...
...
packages/flutter/lib/src/animation/tween.dart
View file @
571e2e84
...
...
@@ -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
'dart:ui'
show
Color
,
Size
,
Rect
,
VoidCallback
;
import
'dart:ui'
show
Color
,
Size
,
Rect
;
import
'animation.dart'
;
import
'animations.dart'
;
...
...
packages/flutter/lib/src/material/theme_data.dart
View file @
571e2e84
...
...
@@ -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
'dart:ui'
show
Color
,
hashValues
,
hashList
,
lerpDouble
;
import
'dart:ui'
show
Color
,
hashValues
;
import
'colors.dart'
;
import
'icon_theme_data.dart'
;
...
...
packages/flutter/lib/src/widgets/app.dart
View file @
571e2e84
...
...
@@ -3,7 +3,7 @@
// found in the LICENSE file.
import
'dart:async'
;
import
'dart:ui'
as
ui
show
Locale
,
WindowPadding
,
window
;
import
'dart:ui'
as
ui
show
window
;
import
'package:flutter/rendering.dart'
;
import
'package:flutter/services.dart'
;
...
...
packages/flutter/test/widget/asset_vendor_test.dart
View file @
571e2e84
...
...
@@ -3,7 +3,7 @@
// found in the LICENSE file.
import
'dart:async'
;
import
'dart:ui'
as
ui
show
Image
,
hashValues
;
import
'dart:ui'
as
ui
show
Image
;
import
'package:flutter_test/flutter_test.dart'
;
import
'package:flutter/rendering.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