Features
This package let's you add 3D model of VW polo render to your project.
Screenshots
Render
How to use
Installation
Add polo_package: to your pubspec.yaml dependencies then run flutter pub get
dependencies:
polo_package: ^0.0.4
Import
Add this line to import the package.
import 'package:polo_package/polo_package.dart';
Widget PoloWidget can be used in your project to show 3D rendering of a VW Polo car, which is also interactive (supports zoom, drag, scroll). And you can change height, width, color and progress color of the widget.
Use of widget PoloWidget.
Scaffold(
body: Center(
child: PoloWidget(
height: 200,
width: double.infinity,
color: Colors.blue,
),
),
),