flutter_model_viewer 0.0.4
flutter_model_viewer: ^0.0.4 copied to clipboard
load glb/gltf.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:flutter_model_viewer/flutter_model_viewer.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
static const String src1 = 'https://superd.oss-cn-beijing.aliyuncs.com/pub_upload/2022-03-04/ciawb49ie51dq3f0ho.glb';
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Column(
children: const [
SizedBox(
height: 400,
child: ModelViewer(
src: src1,
autoRotate: true,
rotationPerSecond: "50deg",
autoRotateDelay: 500,
cameraControls: true,
openCache: true,
),
)
],
),
),
);
}
}