diff --git a/engine/src/flutter/examples/address_book/lib/main.dart b/engine/src/flutter/examples/address_book/lib/main.dart index dee2b761489..964c39f2cfd 100644 --- a/engine/src/flutter/examples/address_book/lib/main.dart +++ b/engine/src/flutter/examples/address_book/lib/main.dart @@ -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 'package:sky/material.dart'; +import 'package:flutter/material.dart'; class Field extends StatelessComponent { Field({ diff --git a/engine/src/flutter/examples/address_book/pubspec.yaml b/engine/src/flutter/examples/address_book/pubspec.yaml index ec6fdab5996..435112907b1 100644 --- a/engine/src/flutter/examples/address_book/pubspec.yaml +++ b/engine/src/flutter/examples/address_book/pubspec.yaml @@ -1,9 +1,9 @@ name: address_book dependencies: - sky: any + flutter: any sky_tools: any dependency_overrides: material_design_icons: path: ../../sky/packages/material_design_icons - sky: + flutter: path: ../../sky/packages/sky diff --git a/engine/src/flutter/examples/hello_world/lib/main.dart b/engine/src/flutter/examples/hello_world/lib/main.dart index c3a23d1f76e..fc373381182 100644 --- a/engine/src/flutter/examples/hello_world/lib/main.dart +++ b/engine/src/flutter/examples/hello_world/lib/main.dart @@ -2,6 +2,6 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -import 'package:sky/widgets.dart'; +import 'package:flutter/widgets.dart'; void main() => runApp(new Center(child: new Text('Hello, world!'))); diff --git a/engine/src/flutter/examples/hello_world/pubspec.yaml b/engine/src/flutter/examples/hello_world/pubspec.yaml index 723d63b3d5c..6593305cb23 100644 --- a/engine/src/flutter/examples/hello_world/pubspec.yaml +++ b/engine/src/flutter/examples/hello_world/pubspec.yaml @@ -1,9 +1,9 @@ name: hello_world dependencies: - sky: any + flutter: any sky_tools: any dependency_overrides: material_design_icons: path: ../../sky/packages/material_design_icons - sky: + flutter: path: ../../sky/packages/sky diff --git a/engine/src/flutter/examples/mine_digger/lib/main.dart b/engine/src/flutter/examples/mine_digger/lib/main.dart index 23cc79ff300..b17c6a9340a 100644 --- a/engine/src/flutter/examples/mine_digger/lib/main.dart +++ b/engine/src/flutter/examples/mine_digger/lib/main.dart @@ -4,10 +4,10 @@ import 'dart:ui' as sky; import 'dart:math'; -import 'package:sky/material.dart'; -import 'package:sky/painting.dart'; -import 'package:sky/rendering.dart'; -import 'package:sky/services.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter/painting.dart'; +import 'package:flutter/rendering.dart'; +import 'package:flutter/services.dart'; // Classic minesweeper-inspired game. The mouse controls are standard // except for left + right combo which is not implemented. For touch, diff --git a/engine/src/flutter/examples/mine_digger/pubspec.yaml b/engine/src/flutter/examples/mine_digger/pubspec.yaml index d941b44e6ff..739bf26ddd4 100644 --- a/engine/src/flutter/examples/mine_digger/pubspec.yaml +++ b/engine/src/flutter/examples/mine_digger/pubspec.yaml @@ -1,9 +1,9 @@ name: mine_digger dependencies: - sky: any + flutter: any sky_tools: any dependency_overrides: material_design_icons: path: ../../sky/packages/material_design_icons - sky: + flutter: path: ../../sky/packages/sky diff --git a/engine/src/flutter/sky/packages/updater/lib/main.dart b/engine/src/flutter/sky/packages/updater/lib/main.dart index ea168da2998..5d0b0a6fcd6 100644 --- a/engine/src/flutter/sky/packages/updater/lib/main.dart +++ b/engine/src/flutter/sky/packages/updater/lib/main.dart @@ -6,7 +6,7 @@ import 'dart:async'; import 'dart:io'; import 'package:mojo/core.dart'; -import 'package:sky/services.dart'; +import 'package:flutter/services.dart'; import 'package:sky_services/updater/update_service.mojom.dart'; import 'package:path/path.dart' as path; import 'package:yaml/yaml.dart' as yaml; diff --git a/engine/src/flutter/sky/packages/updater/pubspec.yaml b/engine/src/flutter/sky/packages/updater/pubspec.yaml index ffff0472572..df785487859 100644 --- a/engine/src/flutter/sky/packages/updater/pubspec.yaml +++ b/engine/src/flutter/sky/packages/updater/pubspec.yaml @@ -5,12 +5,12 @@ description: The autoupdater for flutter homepage: http://flutter.io dependencies: mojo: '>=0.2.0 <0.3.0' - sky: any + flutter: any sky_services: any path: any yaml: any dependency_overrides: - sky: + flutter: path: ../sky environment: sdk: '>=1.12.0 <2.0.0' diff --git a/engine/src/flutter/sky/packages/workbench/pubspec.yaml b/engine/src/flutter/sky/packages/workbench/pubspec.yaml index 760e04dce7d..5587cec4d82 100644 --- a/engine/src/flutter/sky/packages/workbench/pubspec.yaml +++ b/engine/src/flutter/sky/packages/workbench/pubspec.yaml @@ -4,12 +4,12 @@ author: Flutter Authors description: A workspace to host pub packages homepage: https://github.com/flutter/engine/tree/master/sky/packages/workbench dependencies: - sky: any + flutter: any sky_tools: any dependency_overrides: material_design_icons: path: ../material_design_icons - sky: + flutter: path: ../sky environment: sdk: '>=1.8.0 <2.0.0'