spatial

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

spatial

Spatial Widget Container for Flutter #
This package contains a Container to add spatial properties like rotation and position for widgets in a 3D simulated space.

The container is binded to a SpatialContext (The 3D state of a child widget)
The SpatialContext enable transformation functions like move() or rotate()
Examples #
1. Declare and construct a spatialContext

import 'package:spatial/spatial.dart';
import 'package:flutter/material.dart';

final SpatialContext spatialContext = SpatialContext();

copied to clipboard
2. Add the Spatial Container Widget

@override
Widget build(BuildContext context) => Spatial(
child: AnyWidget(),
spatialContext: spatialContext,
);

copied to clipboard
3. Rotate your widget

void _rotateMyWidget() {
spatialContext.rotate(x: -1.0);
spatialContext.rotate(z: 1.5);
}

copied to clipboard
4. Move your widget

void _moveMyWidget() {
spatialContext.move(x: 1.0);
spatialContext.move(y: -0.5);
}

copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.