Skip to content

Commit

Permalink
renamed project to flutter_view_widgets to be able to publish again t…
Browse files Browse the repository at this point in the history
…o pub
  • Loading branch information
blueneogeo committed Jul 25, 2019
1 parent 658b875 commit 5d1c228
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .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/
Expand All @@ -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/
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions README.md
@@ -1,14 +1,14 @@
# 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.

[http://flutter-view.io](http://flutter-view.io)

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:
Expand Down
2 changes: 1 addition & 1 deletion 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
Expand Down
2 changes: 1 addition & 1 deletion example/lib/example-page.dart
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion 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
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Expand Up @@ -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.
Expand Down
@@ -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';
Expand Down
4 changes: 2 additions & 2 deletions 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 <chris.vogel@me.com>
homepage: https://github.com/flutter-view/flutter-view-tools
homepage: https://github.com/flutter-view/flutter-view-widgets
version: 1.0.6

environment:
Expand Down

0 comments on commit 5d1c228

Please sign in to comment.