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
2b631811
Unverified
Commit
2b631811
authored
Jan 26, 2021
by
Sam Rawlins
Committed by
GitHub
Jan 26, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove "unnecessary" imports. (#74385)
parent
00663883
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
0 additions
and
17 deletions
+0
-17
actions.dart
dev/manual_tests/lib/actions.dart
+0
-1
card_collection.dart
dev/manual_tests/lib/card_collection.dart
+0
-1
color_testing_demo.dart
dev/manual_tests/lib/color_testing_demo.dart
+0
-1
density.dart
dev/manual_tests/lib/density.dart
+0
-2
drag_and_drop.dart
dev/manual_tests/lib/drag_and_drop.dart
+0
-1
focus.dart
dev/manual_tests/lib/focus.dart
+0
-2
hover.dart
dev/manual_tests/lib/hover.dart
+0
-1
material_arc.dart
dev/manual_tests/lib/material_arc.dart
+0
-1
overlay_geometry.dart
dev/manual_tests/lib/overlay_geometry.dart
+0
-3
page_view.dart
dev/manual_tests/lib/page_view.dart
+0
-1
raw_keyboard.dart
dev/manual_tests/lib/raw_keyboard.dart
+0
-1
text.dart
dev/manual_tests/lib/text.dart
+0
-1
color_testing_demo_test.dart
dev/manual_tests/test/color_testing_demo_test.dart
+0
-1
No files found.
dev/manual_tests/lib/actions.dart
View file @
2b631811
...
@@ -8,7 +8,6 @@ import 'dart:io';
...
@@ -8,7 +8,6 @@ import 'dart:io';
import
'package:flutter/foundation.dart'
;
import
'package:flutter/foundation.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/services.dart'
;
import
'package:flutter/services.dart'
;
import
'package:flutter/widgets.dart'
;
void
main
(
)
{
void
main
(
)
{
runApp
(
const
MaterialApp
(
runApp
(
const
MaterialApp
(
...
...
dev/manual_tests/lib/card_collection.dart
View file @
2b631811
...
@@ -5,7 +5,6 @@
...
@@ -5,7 +5,6 @@
import
'dart:math'
;
import
'dart:math'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/rendering.dart'
show
debugDumpRenderTree
;
class
CardModel
{
class
CardModel
{
CardModel
(
this
.
value
,
this
.
height
)
{
CardModel
(
this
.
value
,
this
.
height
)
{
...
...
dev/manual_tests/lib/color_testing_demo.dart
View file @
2b631811
...
@@ -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
ColorTestingDemo
extends
StatelessWidget
{
class
ColorTestingDemo
extends
StatelessWidget
{
const
ColorTestingDemo
({
Key
key
})
:
super
(
key:
key
);
const
ColorTestingDemo
({
Key
key
})
:
super
(
key:
key
);
...
...
dev/manual_tests/lib/density.dart
View file @
2b631811
...
@@ -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
'package:flutter/foundation.dart'
;
import
'package:flutter/scheduler.dart'
show
timeDilation
;
import
'package:flutter/scheduler.dart'
show
timeDilation
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/rendering.dart'
;
final
Map
<
int
,
Color
>
m2SwatchColors
=
<
int
,
Color
>{
final
Map
<
int
,
Color
>
m2SwatchColors
=
<
int
,
Color
>{
50
:
const
Color
(
0xfff2e7fe
),
50
:
const
Color
(
0xfff2e7fe
),
...
...
dev/manual_tests/lib/drag_and_drop.dart
View file @
2b631811
...
@@ -4,7 +4,6 @@
...
@@ -4,7 +4,6 @@
import
'dart:math'
as
math
;
import
'dart:math'
as
math
;
import
'package:flutter/foundation.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
class
ExampleDragTarget
extends
StatefulWidget
{
class
ExampleDragTarget
extends
StatefulWidget
{
...
...
dev/manual_tests/lib/focus.dart
View file @
2b631811
...
@@ -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
'package:flutter/foundation.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/services.dart'
;
import
'package:flutter/services.dart'
;
import
'package:flutter/widgets.dart'
;
void
main
(
)
{
void
main
(
)
{
runApp
(
const
MaterialApp
(
runApp
(
const
MaterialApp
(
...
...
dev/manual_tests/lib/hover.dart
View file @
2b631811
...
@@ -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/foundation.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
void
main
(
)
{
void
main
(
)
{
...
...
dev/manual_tests/lib/material_arc.dart
View file @
2b631811
...
@@ -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/foundation.dart'
;
import
'package:flutter/gestures.dart'
;
import
'package:flutter/gestures.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
...
...
dev/manual_tests/lib/overlay_geometry.dart
View file @
2b631811
...
@@ -2,10 +2,7 @@
...
@@ -2,10 +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/foundation.dart'
;
import
'package:flutter/gestures.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/rendering.dart'
;
class
CardModel
{
class
CardModel
{
CardModel
(
this
.
value
,
this
.
height
,
this
.
color
);
CardModel
(
this
.
value
,
this
.
height
,
this
.
color
);
...
...
dev/manual_tests/lib/page_view.dart
View file @
2b631811
...
@@ -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/foundation.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
class
CardModel
{
class
CardModel
{
...
...
dev/manual_tests/lib/raw_keyboard.dart
View file @
2b631811
...
@@ -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/foundation.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/services.dart'
;
import
'package:flutter/services.dart'
;
...
...
dev/manual_tests/lib/text.dart
View file @
2b631811
...
@@ -6,7 +6,6 @@ import 'dart:math' as math;
...
@@ -6,7 +6,6 @@ import 'dart:math' as math;
import
'package:flutter/foundation.dart'
;
import
'package:flutter/foundation.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/rendering.dart'
;
import
'package:flutter/scheduler.dart'
;
import
'package:flutter/scheduler.dart'
;
int
seed
=
0
;
int
seed
=
0
;
...
...
dev/manual_tests/test/color_testing_demo_test.dart
View file @
2b631811
...
@@ -4,7 +4,6 @@
...
@@ -4,7 +4,6 @@
import
'dart:io'
;
import
'dart:io'
;
import
'package:flutter/material.dart'
;
import
'package:flutter_test/flutter_test.dart'
;
import
'package:flutter_test/flutter_test.dart'
;
import
'package:manual_tests/color_testing_demo.dart'
as
color_testing_demo
;
import
'package:manual_tests/color_testing_demo.dart'
as
color_testing_demo
;
...
...
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