diff --git a/example/lib/components/app/app_component.dart b/example/lib/components/app/app_component.dart index 6d6b511..3f7e32a 100644 --- a/example/lib/components/app/app_component.dart +++ b/example/lib/components/app/app_component.dart @@ -5,11 +5,10 @@ * Copyright (c) 2018 Posse Productions LLC. All rights reserved. * See LICENSE for distribution and usage details. */ -import '../../config/application.dart'; +import 'package:router_example/config/application.dart'; import 'package:flutter/material.dart'; import 'package:fluro/fluro.dart'; -import '../../config/routes.dart'; -import '../home/home_component.dart'; +import 'package:router_example/config/routes.dart'; class AppComponent extends StatefulWidget { diff --git a/example/lib/components/demo/demo_result_component.dart b/example/lib/components/demo/demo_result_component.dart index 6b81e4a..4a1f7cd 100644 --- a/example/lib/components/demo/demo_result_component.dart +++ b/example/lib/components/demo/demo_result_component.dart @@ -1,3 +1,10 @@ +/* + * fluro + * A Posse Production + * http://goposse.com + * Copyright (c) 2018 Posse Productions LLC. All rights reserved. + * See LICENSE for distribution and usage details. + */ import 'package:flutter/material.dart'; class DemoResultComponent extends StatefulWidget { diff --git a/example/lib/components/demo/demo_simple_component.dart b/example/lib/components/demo/demo_simple_component.dart index 8e85ca1..f1020ad 100644 --- a/example/lib/components/demo/demo_simple_component.dart +++ b/example/lib/components/demo/demo_simple_component.dart @@ -5,7 +5,7 @@ * Copyright (c) 2018 Posse Productions LLC. All rights reserved. * See LICENSE for distribution and usage details. */ -import '../../helpers/color_helpers.dart'; +import 'package:router_example/helpers/color_helpers.dart'; import 'package:flutter/material.dart'; class DemoSimpleComponent extends StatelessWidget { diff --git a/example/lib/components/home/home_component.dart b/example/lib/components/home/home_component.dart index 534b567..294b011 100644 --- a/example/lib/components/home/home_component.dart +++ b/example/lib/components/home/home_component.dart @@ -7,7 +7,7 @@ */ import 'dart:async'; -import '../../config/application.dart'; +import 'package:router_example/config/application.dart'; import 'package:fluro/fluro.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; diff --git a/example/lib/config/route_handlers.dart b/example/lib/config/route_handlers.dart index 7f1ad67..c335923 100644 --- a/example/lib/config/route_handlers.dart +++ b/example/lib/config/route_handlers.dart @@ -5,9 +5,9 @@ * Copyright (c) 2018 Posse Productions LLC. All rights reserved. * See LICENSE for distribution and usage details. */ -import '../helpers/color_helpers.dart'; -import '../components/demo/demo_simple_component.dart'; -import '../components/home/home_component.dart'; +import 'package:router_example/helpers/color_helpers.dart'; +import 'package:router_example/components/demo/demo_simple_component.dart'; +import 'package:router_example/components/home/home_component.dart'; import 'package:flutter/painting.dart'; import 'package:fluro/fluro.dart'; import 'package:flutter/material.dart'; diff --git a/example/lib/config/routes.dart b/example/lib/config/routes.dart index d2c1ec1..00f3e43 100644 --- a/example/lib/config/routes.dart +++ b/example/lib/config/routes.dart @@ -7,7 +7,7 @@ */ import 'package:fluro/fluro.dart'; import 'package:flutter/material.dart'; -import './route_handlers.dart'; +import 'package:router_example/config/route_handlers.dart'; class Routes { diff --git a/lib/src/routable.dart b/lib/src/routable.dart index f786933..ea1ac3b 100644 --- a/lib/src/routable.dart +++ b/lib/src/routable.dart @@ -1,3 +1,10 @@ +/* + * fluro + * A Posse Production + * http://goposse.com + * Copyright (c) 2018 Posse Productions LLC. All rights reserved. + * See LICENSE for distribution and usage details. + */ part of fluro; abstract class Routable {