flutter_viewer_usdz 0.0.1 flutter_viewer_usdz: ^0.0.1 copied to clipboard
Plugin de Flutter para la visualización de archivos USDZ en aplicaciones móviles.
example/lib/main.dart
// import 'package:flutter/material.dart';
// import 'dart:async';
// import 'package:flutter_viewer_usdz/flutter_viewer_usdz.dart';
// void main() {
// runApp(const MyApp());
// }
// class MyApp extends StatefulWidget {
// const MyApp({super.key});
// @override
// State<MyApp> createState() => _MyAppState();
// }
// class _MyAppState extends State<MyApp> {
// String _platformVersion = 'Unknown';
// final _flutterViewerUsdzPlugin = FlutterViewerUsdz();
// @override
// void initState() {
// super.initState();
// initPlatformState();
// }
// Future<void> initPlatformState() async {
// String platformVersion;
// try {
// platformVersion =
// await _flutterViewerUsdzPlugin.getPlatformVersion() ?? 'Unknown platform version';
// } on PlatformException {
// platformVersion = 'Failed to get platform version.';
// }
// if (!mounted) return;
// setState(() {
// _platformVersion = platformVersion;
// });
// }
// Future<void> loadFile() async {
// bool success;
// try {
// success = await _flutterViewerUsdzPlugin.loadUSDZFile('path/to/your/file.usdz');
// } on PlatformException {
// success = false;
// }
// if (success) {
// // Manejar el éxito de la carga del archivo
// } else {
// // Manejar el error de carga del archivo
// }
// }
// @override
// Widget build(BuildContext context) {
// return MaterialApp(
// home: Scaffold(
// appBar: AppBar(
// title: const Text('Plugin example app'),
// ),
// body: Center(
// child: Column(
// mainAxisAlignment: MainAxisAlignment.center,
// children: [
// Text('Running on: $_platformVersion\n'),
// ElevatedButton(
// onPressed: loadFile,
// child: const Text('Load USDZ File'),
// ),
// ],
// ),
// ),
// ),
// );
// }
// }