Skip to content

copy #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 12 commits into
base: zpath
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,24 @@

# Zflutter

<a href="https://z.flutter.gallery/"><img align="right" height="250px" src="https://github.com/jamesblasco/zflutter/blob/master/docs/assets/images/ui3d.gif?raw"/></a>

<a href="https://pub.dev/packages/zflutter"><img class="shield-button" src="https://img.shields.io/pub/v/zflutter.svg?logo=flutter&color=blue&style=for-the-badge" /></a>



**A pseudo-3D engine for Flutter.**
</br>

This is an alpha version and it might change before release.

To read the docs and see examples visit [z.flutter.gallery](https://z.flutter.gallery/)




</br></br></br></br>

# Zflutter is based on Zdog

First we would like to give the mertits to [Zdog](https://zzz.dog), the pseudo-3D JavaScript engine that has been the base inspiration for this project.
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions docs/CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
z.flutter.gallery
File renamed without changes.
6 changes: 3 additions & 3 deletions website/Gemfile.lock → docs/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ GEM
i18n (>= 0.9.5, < 2)
jekyll-sass-converter (~> 2.0)
jekyll-watch (~> 2.0)
kramdown (~> 2.1)
kramdown (~> 2.3)
kramdown-parser-gfm (~> 1.0)
liquid (~> 4.0)
mercenary (~> 0.3.3)
Expand All @@ -47,10 +47,10 @@ GEM
jekyll (>= 3.8.5, < 4.1.0)
jekyll-seo-tag (~> 2.0)
rake (>= 12.3.1, < 13.1.0)
kramdown (2.2.1)
kramdown (2.3.0)
rexml
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
kramdown (~> 2.3)
liquid (4.0.3)
listen (3.2.1)
rb-fsevent (~> 0.10, >= 0.10.3)
Expand Down
1 change: 1 addition & 0 deletions website/_config.yml → docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ social:

# Build settings
#theme: minimal-mistakes-jekyll
remote_theme: pmarsceill/just-the-docs
theme: "just-the-docs"
plugins:
- jekyll-feed
Expand Down
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion website/getting_started.md → docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ nav_order: 1
permalink: /docs/getting-started/
---

{% include head.html %}



# Getting started
Expand Down
File renamed without changes.
1 change: 0 additions & 1 deletion website/modeling.md → docs/modeling.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ title: Modeling
nav_order: 2
permalink: /docs/modeling/
---
{% include head.html %}

# Modeling

Expand Down
2 changes: 1 addition & 1 deletion website/shapes.md → docs/shapes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Shapes
nav_order: 3
permalink: /docs/shapes/
---
{% include head.html %}


# Shapes
{: .no_toc}
Expand Down
100 changes: 0 additions & 100 deletions website/.firebase/hosting.X3NpdGU.cache

This file was deleted.

2 changes: 0 additions & 2 deletions website/.firebase/hosting.cHVibGlj.cache

This file was deleted.

6 changes: 2 additions & 4 deletions zflutter/example/lib/examples/dice/dice.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import 'package:flutter/physics.dart';
import 'package:zflutter/zflutter.dart';

class Dices extends StatefulWidget {
_PhysicsAnimation createState() => _PhysicsAnimation();
_PhysicsAnimation createState() => _DicesState();
}

class _PhysicsAnimation extends State<Dices>
class _DicesState extends State<Dices>
with SingleTickerProviderStateMixin {
AnimationController animationController;

Expand Down Expand Up @@ -304,7 +304,5 @@ class Dice extends StatelessWidget {
),
],
);
// include the dots repeating as many shapes/groups as possible
// ! when copying an element be sure to reset the rotation/translation of the copied shape
}
}