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
6ea2806b
Unverified
Commit
6ea2806b
authored
Jan 27, 2021
by
Sam Rawlins
Committed by
GitHub
Jan 27, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unnecessary imports (#74382)
parent
2d9fad09
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
0 additions
and
24 deletions
+0
-24
print_correct_local_widget_test.dart
...d_tests/flutter_test/print_correct_local_widget_test.dart
+0
-1
color_filter_and_fade.dart
...hmarks/macrobenchmarks/lib/src/color_filter_and_fade.dart
+0
-4
cubic_bezier.dart
dev/benchmarks/macrobenchmarks/lib/src/cubic_bezier.dart
+0
-2
picture_cache.dart
dev/benchmarks/macrobenchmarks/lib/src/picture_cache.dart
+0
-1
bench_text_layout.dart
...hmarks/macrobenchmarks/lib/src/web/bench_text_layout.dart
+0
-1
bench_wrapbox_scroll.dart
...rks/macrobenchmarks/lib/src/web/bench_wrapbox_scroll.dart
+0
-1
picture_cache_perf_e2e.dart
...nchmarks/macrobenchmarks/test/picture_cache_perf_e2e.dart
+0
-2
matrix_utils_transform_bench.dart
...benchmarks/lib/geometry/matrix_utils_transform_bench.dart
+0
-2
gesture_detector_bench.dart
.../microbenchmarks/lib/gestures/gesture_detector_bench.dart
+0
-1
animation_bench.dart
...enchmarks/microbenchmarks/lib/stocks/animation_bench.dart
+0
-4
build_bench.dart
dev/benchmarks/microbenchmarks/lib/stocks/build_bench.dart
+0
-2
layout_bench.dart
dev/benchmarks/microbenchmarks/lib/stocks/layout_bench.dart
+0
-2
icon_color_test.dart
dev/benchmarks/test_apps/stocks/test/icon_color_test.dart
+0
-1
No files found.
dev/automated_tests/flutter_test/print_correct_local_widget_test.dart
View file @
6ea2806b
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// found in the LICENSE file.
import
'package:flutter/widgets.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter_test/flutter_test.dart'
;
import
'package:flutter_test/flutter_test.dart'
;
...
...
dev/benchmarks/macrobenchmarks/lib/src/color_filter_and_fade.dart
View file @
6ea2806b
...
@@ -3,12 +3,8 @@
...
@@ -3,12 +3,8 @@
// found in the LICENSE file.
// found in the LICENSE file.
import
'dart:ui'
as
ui
;
import
'dart:ui'
as
ui
;
import
'dart:ui'
;
import
'package:flutter/foundation.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/widgets.dart'
;
import
'package:flutter/rendering.dart'
;
// This tests whether the Opacity layer raster cache works with color filters.
// This tests whether the Opacity layer raster cache works with color filters.
// See https://github.com/flutter/flutter/issues/51975.
// See https://github.com/flutter/flutter/issues/51975.
...
...
dev/benchmarks/macrobenchmarks/lib/src/cubic_bezier.dart
View file @
6ea2806b
...
@@ -4,8 +4,6 @@
...
@@ -4,8 +4,6 @@
import
'dart:math'
;
import
'dart:math'
;
import
'package:flutter/widgets.dart'
;
import
'package:flutter/animation.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
// Based on https://github.com/eseidelGoogle/bezier_perf/blob/master/lib/main.dart
// Based on https://github.com/eseidelGoogle/bezier_perf/blob/master/lib/main.dart
...
...
dev/benchmarks/macrobenchmarks/lib/src/picture_cache.dart
View file @
6ea2806b
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
// found in the LICENSE file.
// found in the LICENSE file.
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/rendering.dart'
;
class
PictureCachePage
extends
StatelessWidget
{
class
PictureCachePage
extends
StatelessWidget
{
static
const
List
<
String
>
kTabNames
=
<
String
>[
'1'
,
'2'
,
'3'
,
'4'
,
'5'
];
static
const
List
<
String
>
kTabNames
=
<
String
>[
'1'
,
'2'
,
'3'
,
'4'
,
'5'
];
...
...
dev/benchmarks/macrobenchmarks/lib/src/web/bench_text_layout.dart
View file @
6ea2806b
...
@@ -8,7 +8,6 @@ import 'dart:math';
...
@@ -8,7 +8,6 @@ import 'dart:math';
import
'dart:ui'
as
ui
;
import
'dart:ui'
as
ui
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
import
'package:meta/meta.dart'
;
import
'recorder.dart'
;
import
'recorder.dart'
;
...
...
dev/benchmarks/macrobenchmarks/lib/src/web/bench_wrapbox_scroll.dart
View file @
6ea2806b
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
// found in the LICENSE file.
// found in the LICENSE file.
import
'dart:async'
;
import
'dart:async'
;
import
'dart:ui'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
...
...
dev/benchmarks/macrobenchmarks/test/picture_cache_perf_e2e.dart
View file @
6ea2806b
...
@@ -2,9 +2,7 @@
...
@@ -2,9 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// found in the LICENSE file.
import
'package:flutter/gestures.dart'
;
import
'package:flutter/widgets.dart'
;
import
'package:flutter/widgets.dart'
;
import
'package:flutter/foundation.dart'
;
import
'package:flutter_test/flutter_test.dart'
;
import
'package:flutter_test/flutter_test.dart'
;
import
'package:macrobenchmarks/common.dart'
;
import
'package:macrobenchmarks/common.dart'
;
...
...
dev/benchmarks/microbenchmarks/lib/geometry/matrix_utils_transform_bench.dart
View file @
6ea2806b
...
@@ -4,9 +4,7 @@
...
@@ -4,9 +4,7 @@
import
'dart:math'
as
math
;
import
'dart:math'
as
math
;
import
'package:flutter/painting.dart'
;
import
'package:flutter/rendering.dart'
;
import
'package:flutter/rendering.dart'
;
import
'package:vector_math/vector_math_64.dart'
;
import
'../common.dart'
;
import
'../common.dart'
;
...
...
dev/benchmarks/microbenchmarks/lib/gestures/gesture_detector_bench.dart
View file @
6ea2806b
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// found in the LICENSE file.
import
'package:flutter/gestures.dart'
;
import
'package:flutter_test/flutter_test.dart'
;
import
'package:flutter_test/flutter_test.dart'
;
import
'../common.dart'
;
import
'../common.dart'
;
...
...
dev/benchmarks/microbenchmarks/lib/stocks/animation_bench.dart
View file @
6ea2806b
...
@@ -2,11 +2,7 @@
...
@@ -2,11 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// found in the LICENSE file.
import
'dart:async'
;
import
'package:flutter_test/flutter_test.dart'
;
import
'package:flutter_test/flutter_test.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/rendering.dart'
;
import
'package:flutter/scheduler.dart'
;
import
'package:flutter/scheduler.dart'
;
import
'package:stocks/main.dart'
as
stocks
;
import
'package:stocks/main.dart'
as
stocks
;
import
'package:stocks/stock_data.dart'
as
stock_data
;
import
'package:stocks/stock_data.dart'
as
stock_data
;
...
...
dev/benchmarks/microbenchmarks/lib/stocks/build_bench.dart
View file @
6ea2806b
...
@@ -2,10 +2,8 @@
...
@@ -2,10 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// found in the LICENSE file.
import
'dart:async'
;
import
'package:flutter_test/flutter_test.dart'
;
import
'package:flutter_test/flutter_test.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/rendering.dart'
;
import
'package:stocks/main.dart'
as
stocks
;
import
'package:stocks/main.dart'
as
stocks
;
import
'package:stocks/stock_data.dart'
as
stock_data
;
import
'package:stocks/stock_data.dart'
as
stock_data
;
...
...
dev/benchmarks/microbenchmarks/lib/stocks/layout_bench.dart
View file @
6ea2806b
...
@@ -2,8 +2,6 @@
...
@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// found in the LICENSE file.
import
'dart:async'
;
import
'package:flutter_test/flutter_test.dart'
;
import
'package:flutter_test/flutter_test.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/rendering.dart'
;
import
'package:flutter/rendering.dart'
;
...
...
dev/benchmarks/test_apps/stocks/test/icon_color_test.dart
View file @
6ea2806b
...
@@ -5,7 +5,6 @@
...
@@ -5,7 +5,6 @@
import
'dart:ui'
as
ui
show
window
;
import
'dart:ui'
as
ui
show
window
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/rendering.dart'
;
import
'package:flutter_test/flutter_test.dart'
;
import
'package:flutter_test/flutter_test.dart'
;
import
'package:stocks/main.dart'
as
stocks
;
import
'package:stocks/main.dart'
as
stocks
;
import
'package:stocks/stock_data.dart'
as
stock_data
;
import
'package:stocks/stock_data.dart'
as
stock_data
;
...
...
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