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
d2c734a3
Unverified
Commit
d2c734a3
authored
Mar 03, 2020
by
Shi-Hao Hong
Committed by
GitHub
Mar 03, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simple repeating word fixes (#51871)
parent
1ba4f1f5
Changes
13
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
14 additions
and
14 deletions
+14
-14
prepare_package.dart
dev/bots/prepare_package.dart
+1
-1
unpublish_package.dart
dev/bots/unpublish_package.dart
+1
-1
README.md
dev/integration_tests/ios_add2app/README.md
+1
-1
README.md
dev/integration_tests/ios_add2app_life_cycle/README.md
+1
-1
app_bar.dart
packages/flutter/lib/src/material/app_bar.dart
+1
-1
slider_theme.dart
packages/flutter/lib/src/material/slider_theme.dart
+1
-1
image_provider.dart
packages/flutter/lib/src/painting/image_provider.dart
+1
-1
focus_scope.dart
packages/flutter/lib/src/widgets/focus_scope.dart
+1
-1
bottom_app_bar_test.dart
packages/flutter/test/material/bottom_app_bar_test.dart
+1
-1
widget_inspector_test.dart
packages/flutter/test/widgets/widget_inspector_test.dart
+1
-1
build_system.dart
...ages/flutter_tools/lib/src/build_system/build_system.dart
+1
-1
flutter_manifest.dart
packages/flutter_tools/lib/src/flutter_manifest.dart
+2
-2
visual_studio_project.dart
.../flutter_tools/lib/src/windows/visual_studio_project.dart
+1
-1
No files found.
dev/bots/prepare_package.dart
View file @
d2c734a3
...
...
@@ -110,7 +110,7 @@ class ProcessRunner {
/// [Directory.current] if [defaultWorkingDirectory] is not set.
///
/// Set `failOk` if [runProcess] should not throw an exception when the
/// command completes with a
a
non-zero exit code.
/// command completes with a non-zero exit code.
Future
<
String
>
runProcess
(
List
<
String
>
commandLine
,
{
Directory
workingDirectory
,
...
...
dev/bots/unpublish_package.dart
View file @
d2c734a3
...
...
@@ -145,7 +145,7 @@ class ProcessRunner {
/// [Directory.current] if [defaultWorkingDirectory] is not set.
///
/// Set `failOk` if [runProcess] should not throw an exception when the
/// command completes with a
a
non-zero exit code.
/// command completes with a non-zero exit code.
Future
<
String
>
runProcess
(
List
<
String
>
commandLine
,
{
Directory
workingDirectory
,
...
...
dev/integration_tests/ios_add2app/README.md
View file @
d2c734a3
...
...
@@ -13,7 +13,7 @@ The following functionality is currently implemented:
(FullScreenViewController.m).
1.
A demo of pushing a FlutterViewController on as a child view.
1.
A demo of showing both the native and the Flutter views using a platform
channel to
to
interact with each other (HybridViewController.m).
channel to interact with each other (HybridViewController.m).
1.
A demo of showing two FlutterViewControllers simultaneously
(DualViewController.m).
...
...
dev/integration_tests/ios_add2app_life_cycle/README.md
View file @
d2c734a3
...
...
@@ -13,7 +13,7 @@ The following functionality is currently implemented:
(FullScreenViewController.m).
1.
A demo of pushing a FlutterViewController on as a child view.
1.
A demo of showing both the native and the Flutter views using a platform
channel to
to
interact with each other (HybridViewController.m).
channel to interact with each other (HybridViewController.m).
1.
A demo of showing two FlutterViewControllers simultaneously
(DualViewController.m).
...
...
packages/flutter/lib/src/material/app_bar.dart
View file @
d2c734a3
...
...
@@ -297,7 +297,7 @@ class AppBar extends StatefulWidget implements PreferredSizeWidget {
/// last action.
///
/// The [actions] become the trailing component of the [NavigationToolBar] built
/// by this widget. The
the
height of each action is constrained to be no bigger
/// by this widget. The height of each action is constrained to be no bigger
/// than the toolbar's height, which is [kToolbarHeight].
final
List
<
Widget
>
actions
;
...
...
packages/flutter/lib/src/material/slider_theme.dart
View file @
d2c734a3
...
...
@@ -578,7 +578,7 @@ class SliderThemeData extends Diagnosticable {
/// The shape that will be used to draw the [RangeSlider]'s track.
///
/// The [SliderTrackShape.getPreferredRect] method is used to
to
map
/// The [SliderTrackShape.getPreferredRect] method is used to map
/// slider-relative gesture coordinates to the correct thumb position on the
/// track. It is also used to horizontally position the tick marks, when the
/// slider is discrete.
...
...
packages/flutter/lib/src/painting/image_provider.dart
View file @
d2c734a3
...
...
@@ -754,7 +754,7 @@ class ResizeImage extends ImageProvider<_SizeAwareCacheKey> {
if
(
result
!=
null
)
{
return
result
;
}
// If the code reaches here, it means the
the
imageProvider.obtainKey was not
// If the code reaches here, it means the imageProvider.obtainKey was not
// completed sync, so we initialize the completer for completion later.
completer
=
Completer
<
_SizeAwareCacheKey
>();
return
completer
.
future
;
...
...
packages/flutter/lib/src/widgets/focus_scope.dart
View file @
d2c734a3
...
...
@@ -372,7 +372,7 @@ class Focus extends StatefulWidget {
/// If true, this [Focus] widget will include a [Semantics] node that
/// indicates the [Semantics.focusable] and [Semantics.focused] properties.
///
/// I
s
is not typical to set this to false, as that can affect the semantics
/// I
t
is not typical to set this to false, as that can affect the semantics
/// information available to accessibility systems.
///
/// Must not be null, defaults to true.
...
...
packages/flutter/test/material/bottom_app_bar_test.dart
View file @
d2c734a3
...
...
@@ -384,7 +384,7 @@ void main() {
// The bottom app bar clip path computation is only available at paint time.
// In order to examine the notch path we implement this caching painter which
// at paint time looks for
for
a descendant PhysicalShape and caches the
// at paint time looks for a descendant PhysicalShape and caches the
// clip path it is using.
class
ClipCachePainter
extends
CustomPainter
{
ClipCachePainter
(
this
.
context
);
...
...
packages/flutter/test/widgets/widget_inspector_test.dart
View file @
d2c734a3
...
...
@@ -1919,7 +1919,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
// No new locations were rebuilt.
expect
(
event
,
isNot
(
contains
(
'newLocations'
)));
// Triggering a
a
rebuild of one widget in this app causes the whole app
// Triggering a rebuild of one widget in this app causes the whole app
// to repaint.
expect
(
data
.
length
,
equals
(
18
));
...
...
packages/flutter_tools/lib/src/build_system/build_system.dart
View file @
d2c734a3
...
...
@@ -379,7 +379,7 @@ class Environment {
/// The `FLUTTER_ROOT` environment variable.
///
/// Defaults to t
o t
he value of [Cache.flutterRoot].
/// Defaults to the value of [Cache.flutterRoot].
final
Directory
flutterRootDir
;
/// The `OUTPUT_DIR` environment variable.
...
...
packages/flutter_tools/lib/src/flutter_manifest.dart
View file @
d2c734a3
...
...
@@ -331,7 +331,7 @@ bool _validate(YamlMap manifest) {
final
List
<
String
>
errors
=
<
String
>[];
for
(
final
MapEntry
<
dynamic
,
dynamic
>
kvp
in
manifest
.
entries
)
{
if
(
kvp
.
key
is
!
String
)
{
errors
.
add
(
'Expected YAML key to be a
a
string, but got
${kvp.key}
.'
);
errors
.
add
(
'Expected YAML key to be a string, but got
${kvp.key}
.'
);
continue
;
}
switch
(
kvp
.
key
as
String
)
{
...
...
@@ -371,7 +371,7 @@ void _validateFlutter(YamlMap yaml, List<String> errors) {
}
for
(
final
MapEntry
<
dynamic
,
dynamic
>
kvp
in
yaml
.
entries
)
{
if
(
kvp
.
key
is
!
String
)
{
errors
.
add
(
'Expected YAML key to be a
a
string, but got
${kvp.key}
(
${kvp.value.runtimeType}
).'
);
errors
.
add
(
'Expected YAML key to be a string, but got
${kvp.key}
(
${kvp.value.runtimeType}
).'
);
continue
;
}
switch
(
kvp
.
key
as
String
)
{
...
...
packages/flutter_tools/lib/src/windows/visual_studio_project.dart
View file @
d2c734a3
...
...
@@ -29,7 +29,7 @@ class VisualStudioProject {
/// The content of the project file.
xml
.
XmlDocument
content
;
/// Whether or not the
the
project file was correctly parsed.
/// Whether or not the project file was correctly parsed.
///
/// If false, this could indicate that the project file is damaged, or that
/// it's an unsupported project type.
...
...
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