Skip to content

Commit

Permalink
regenerate projects
Browse files Browse the repository at this point in the history
  • Loading branch information
lukepighetti committed Oct 16, 2020
1 parent 36f847a commit 02a3048
Show file tree
Hide file tree
Showing 65 changed files with 779 additions and 18,293 deletions.
38 changes: 0 additions & 38 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

This file was deleted.

77 changes: 69 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,74 @@
# mac system
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/

# intellij
.idea
# IntelliJ related
*.iml
*.ipr
*.iws
.idea/

# dart / flutter
.packages
pubspec.lock
coverage
__temp_coverage*
# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/

# Flutter/Dart/Pub related
**/doc/api/
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.packages
.pub-cache/
.pub/
build/

# Android related
**/android/**/gradle-wrapper.jar
**/android/.gradle
**/android/captures/
**/android/gradlew
**/android/gradlew.bat
**/android/local.properties
**/android/**/GeneratedPluginRegistrant.java

# iOS/XCode related
**/ios/**/*.mode1v3
**/ios/**/*.mode2v3
**/ios/**/*.moved-aside
**/ios/**/*.pbxuser
**/ios/**/*.perspectivev3
**/ios/**/*sync/
**/ios/**/.sconsign.dblite
**/ios/**/.tags*
**/ios/**/.vagrant/
**/ios/**/DerivedData/
**/ios/**/Icon?
**/ios/**/Pods/
**/ios/**/.symlinks/
**/ios/**/profile
**/ios/**/xcuserdata
**/ios/.generated/
**/ios/Flutter/App.framework
**/ios/Flutter/Flutter.framework
**/ios/Flutter/Flutter.podspec
**/ios/Flutter/Generated.xcconfig
**/ios/Flutter/app.flx
**/ios/Flutter/app.zip
**/ios/Flutter/flutter_assets/
**/ios/Flutter/flutter_export_environment.sh
**/ios/ServiceDefinitions.json
**/ios/Runner/GeneratedPluginRegistrant.*

# Exceptions to above rules.
!**/ios/**/default.mode1v3
!**/ios/**/default.mode2v3
!**/ios/**/default.pbxuser
!**/ios/**/default.perspectivev3
10 changes: 10 additions & 0 deletions .metadata
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled and should not be manually edited.

version:
revision: d408d302e22179d598f467e11da5dd968dbdc9ec
channel: beta

project_type: package
30 changes: 0 additions & 30 deletions .travis.yml

This file was deleted.

15 changes: 0 additions & 15 deletions .vscode/launch.json

This file was deleted.

102 changes: 2 additions & 100 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,101 +1,3 @@
# 1.6.4
## [0.0.1] - TODO: Add release date.

- Rename Router to FluroRouter to avoid namespace collisions with the Router class from the new Pages / Navigator 2.0 API.

# 1.6.3

- Remove upper bounds on Flutter SDK checks because Flutter releases are a ridiculous mess

# 1.6.2

- Support for Flutter `>=1.12 <=1.17`

# 1.6.1

- Support for Flutter `1.12+`

# 1.6.0

- No changes other than fixes for non-backwards compatible Flutter changes
- Flutter `>= 1.12.0` is required due to Flutter compatibility issues
- Dart `>= 2.6.0` is required

# 1.5.2

- Remove dependency on `dart:io`
- 1.5.x and lower now only supports Flutter versions `< 1.13.0`

# 1.5.1

- Add explicit material and full screen material transition types
- Fix issue in transition logic
- Remove redundant `new`, `const`, etc qualifiers
- Tidy example
- Add font license info

# 1.5.0

- Native transitions will now use the Cupertino page route on iOS and Material page route on android. This will enable swipe gestures on iOS.
- Added cupertino specific transition types.
- **You should not be using Cupertino types on non-iOS platforms. It's up to you, but it's bad design**.

# 1.4.0

- Added the ability to define a transition at the point of route definition. Route transitions are optional and any transition defined a "push" will override the route definition.

# 1.3.7

- Add `toString` for custom `RouteNotFoundException` type

# 1.3.6

- Small fix to error return type when no route match was made

# 1.3.5

- add `pop` convenience
- add `clearStack` flag so that you can clear the history when pushing a route

# 1.3.4

- Change lower dart version to cater to older flutter versions

# 1.3.3

- Fix analyzer issues
- Remove deprecations in example code
- Fix pubspec analysis issue

# 1.3.2

- Dart 2 package (pubspec) compliance changes ONLY
- **Note**: No functional changes

# 1.3.1

- Fixes an issue with the route generator (result cannot be Null)

# 1.3.0

- **BREAKING**: Parameters now return an array of results even if they have a single value.
- Support for parameter arrays. e.g: `/some/route?color=red&color=green&color=blue`.
- Results can now be passed via `Navigator.pop` via use of a `Future`.
- A few bug fixes

# 1.1.0

**BREAKING**: In order to support function handlers you will need to change all of your route
handler definitions to use the new `Handler` class. The `RouteHandler` definition has now been
removed.

Swapping out the handlers should be as simple as changing:

```dart
RouteHandler usersHandler = (Map<String, String> params) {}
```

to

```dart
var usersHandler = new Handler(handlerFunc: (BuildContext context, Map<String, dynamic> params) {});
```
* TODO: Describe initial release.
31 changes: 1 addition & 30 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,30 +1 @@
Fluro

Created by Yakka
https://theyakka.com

Copyright (c) 2019 Yakka LLC.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the Yakka LLC, Yakka nor the names of its contributors may
be used to endorse or promote products derived from this software without
specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL YAKKA LLC (YAKKA) BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
TODO: Add your license here.
Loading

0 comments on commit 02a3048

Please sign in to comment.