vertex 0.1.1 copy "vertex: ^0.1.1" to clipboard
vertex: ^0.1.1 copied to clipboard

A small and flexible Flutter 3D engine than can parse, render and control .obj and .mtl files

example/lib/main.dart

import 'src/blend_mask/blend_mask.dart';
import 'src/example_01/example_01.dart';
import 'package:flutter/material.dart';
import 'package:vertex/controllers/vertex_controller.dart';
import 'package:vertex/vertex.dart';
import 'package:vertex/widgets/listenable_builder.dart';

import 'src/example_02/example_02.dart';



void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Vertex Example',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      // home: Example01(),
      home: Example02(),
    );
  }
}
13
likes
40
pub points
25%
popularity

Publisher

unverified uploader

A small and flexible Flutter 3D engine than can parse, render and control .obj and .mtl files

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter, path, vector_math

More

Packages that depend on vertex