diff --git a/.packages b/.packages index 9c8ae30..4b5394c 100644 --- a/.packages +++ b/.packages @@ -1,4 +1,4 @@ -# Generated by pub on 2019-07-26 00:00:58.286250. +# Generated by pub on 2019-07-26 00:14:17.404105. async:file:///Users/christianvogel/Development/flutter/.pub-cache/hosted/pub.dartlang.org/async-2.2.0/lib/ boolean_selector:file:///Users/christianvogel/Development/flutter/.pub-cache/hosted/pub.dartlang.org/boolean_selector-1.0.4/lib/ charcode:file:///Users/christianvogel/Development/flutter/.pub-cache/hosted/pub.dartlang.org/charcode-1.1.2/lib/ @@ -20,4 +20,4 @@ term_glyph:file:///Users/christianvogel/Development/flutter/.pub-cache/hosted/pu test_api:file:///Users/christianvogel/Development/flutter/.pub-cache/hosted/pub.dartlang.org/test_api-0.2.5/lib/ typed_data:file:///Users/christianvogel/Development/flutter/.pub-cache/hosted/pub.dartlang.org/typed_data-1.1.6/lib/ vector_math:file:///Users/christianvogel/Development/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/ -flutterview_tools:lib/ +flutter_view_widgets:lib/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 696e7dd..f7d1981 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## 1.0.6 - - Renamed from flutter_view_tools to flutterview_tools to be able to publish again to pub + - Renamed from flutter_view_tools to flutter_view_widgets to be able to publish again to pub - Use latest Flutter release - Formatted sources with flutter format diff --git a/README.md b/README.md index dedc646..5e06a8f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Flutterview Tools +# Flutter-view Widgets -> Notice: flutterview-tools replaces the flutter_view_tools library, which can no longer maintained due to a loss of Dart pub credentials. +> Notice: flutter_view_widgets replaces the flutter_view_tools library, which can no longer maintained due to a loss of Dart pub credentials. Flutter-view is a tool that lets you easily create layouts for Flutter, using Pug and Sass. @@ -8,7 +8,7 @@ Flutter-view is a tool that lets you easily create layouts for Flutter, using Pu This package adds some widgets that allow some extra functionality for flutter-view, and are highly recommended for your flutter-view projects. -Check out the [documentation](https://docs.flutter-view.io/get-started/installation#installing-flutter-view-tools) on how to get started with this library in your own flutter-view project. +Check out the [documentation](https://docs.flutter-view.io/get-started/installation#installing-flutter-view-widgets) on how to get started with this library in your own flutter-view project. Check out the [example project](./example) for a simple project that uses all supported widgets. The library adds the following widgets: diff --git a/example/lib/example-model.dart b/example/lib/example-model.dart index ca2c376..25bc735 100644 --- a/example/lib/example-model.dart +++ b/example/lib/example-model.dart @@ -1,5 +1,5 @@ import 'package:flutter/widgets.dart'; -import 'package:flutterview_tools/flutterview_tools.dart'; +import 'package:flutter_view_widgets/flutter_view_widgets.dart'; /// The model of this example app /// Because it extends [Model] from the ScopedModel library, other classes can be informed when it updates diff --git a/example/lib/example-page.dart b/example/lib/example-page.dart index 9f13849..a424419 100644 --- a/example/lib/example-page.dart +++ b/example/lib/example-page.dart @@ -3,7 +3,7 @@ import 'package:flutter/material.dart'; // ignore: unused_import import 'package:flutter/cupertino.dart'; // ignore: unused_import -import 'package:flutterview_tools/flutterview_tools.dart'; +import 'package:flutter_view_widgets/flutter_view_widgets.dart'; // ignore: unused_import import 'example-model.dart'; // ignore: non_constant_identifier_names diff --git a/example/lib/example-page.pug b/example/lib/example-page.pug index 36e4007..5cd910d 100644 --- a/example/lib/example-page.pug +++ b/example/lib/example-page.pug @@ -1,4 +1,4 @@ -import(package='flutterview_tools/flutterview_tools.dart') +import(package='flutter_view_widgets/flutter_view_widgets.dart') import(file='example-model.dart') //- This is a flutter-view, that renders the example-page, which is the homepage of the app diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 353bbb4..053fe72 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -15,7 +15,7 @@ environment: dependencies: flutter: sdk: flutter - flutterview_tools: + flutter_view_widgets: path: ../ # The following adds the Cupertino Icons font to your application. diff --git a/lib/flutterview_tools.dart b/lib/flutter_view_widgets.dart similarity index 89% rename from lib/flutterview_tools.dart rename to lib/flutter_view_widgets.dart index 901db7f..e91057b 100644 --- a/lib/flutterview_tools.dart +++ b/lib/flutter_view_widgets.dart @@ -1,6 +1,6 @@ /// Backing library for adding extra functionality to the /// flutter-view tool http://flutter-view.io. -library flutterview_tools; +library flutter_view_widgets; export 'package:scoped_model/scoped_model.dart' show Model; export 'src/assign.dart'; diff --git a/pubspec.yaml b/pubspec.yaml index f6559e8..effc844 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ -name: flutterview_tools +name: flutter_view_widgets description: Flutter Dart tools library for flutter-view. These widgets allow some extra functionality for flutter-view, and are highly recommended for your flutter-view projects. author: Christian Vogel -homepage: https://github.com/flutter-view/flutter-view-tools +homepage: https://github.com/flutter-view/flutter-view-widgets version: 1.0.6 environment: