interactive_3d 1.2.4
interactive_3d: ^1.2.4 copied to clipboard
A plugin to render interactive 3D model in .gLTF or .glb format using Filament on Android & GLTFSceneKit on iOS
// main.dart
import 'package:flutter/material.dart';
import 'package:interactive_3d_example/glb_loader_example.dart';
import 'package:interactive_3d_example/memory_test_page.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Interactive 3D Plugin',
theme: ThemeData(
primarySwatch: Colors.deepPurple,
useMaterial3: true,
),
home: const HomePage(),
);
}
}
class HomePage extends StatelessWidget {
const HomePage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Interactive 3D Examples'),
backgroundColor: Colors.deepPurple,
foregroundColor: Colors.white,
),
body: Padding(
padding: const EdgeInsets.all(16.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
// Header Card
Card(
color: Colors.deepPurple.shade50,
child: Padding(
padding: const EdgeInsets.all(16.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'Welcome to Interactive 3D Plugin',
style: Theme.of(context).textTheme.titleLarge?.copyWith(
fontWeight: FontWeight.bold,
color: Colors.deepPurple.shade900,
),
),
const SizedBox(height: 8),
const Text(
'Choose an example below to test the plugin functionality.',
style: TextStyle(fontSize: 14),
),
],
),
),
),
const SizedBox(height: 24),
// Memory Test Button
// _ExampleButton(
// icon: Icons.memory,
// title: 'Memory Leak Test',
// description: 'Test memory management by navigating back and forth',
// color: Colors.red,
// onTap: () {
// Navigator.push(
// context,
// MaterialPageRoute(
// builder: (context) => const MemoryTestPage(),
// ),
// );
// },
// ),
// const SizedBox(height: 12),
// GLB Example Button
_ExampleButton(
icon: Icons.view_in_ar,
title: 'GLB Model Example',
description: 'Full-featured example with all capabilities',
color: Colors.deepPurple,
onTap: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => const GlbLoaderExample(),
),
);
},
),
const SizedBox(height: 24),
],
),
),
);
}
}
class _ExampleButton extends StatelessWidget {
final IconData icon;
final String title;
final String description;
final Color color;
final VoidCallback onTap;
const _ExampleButton({
required this.icon,
required this.title,
required this.description,
required this.color,
required this.onTap,
});
@override
Widget build(BuildContext context) {
return Card(
elevation: 2,
child: InkWell(
onTap: onTap,
borderRadius: BorderRadius.circular(12),
child: Padding(
padding: const EdgeInsets.all(16.0),
child: Row(
children: [
Container(
padding: const EdgeInsets.all(12),
decoration: BoxDecoration(
color: color.withOpacity(0.1),
borderRadius: BorderRadius.circular(12),
),
child: Icon(
icon,
color: color,
size: 32,
),
),
const SizedBox(width: 16),
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
title,
style: const TextStyle(
fontSize: 18,
fontWeight: FontWeight.bold,
),
),
const SizedBox(height: 4),
Text(
description,
style: TextStyle(
fontSize: 14,
color: Colors.grey.shade600,
),
),
],
),
),
Icon(
Icons.arrow_forward_ios,
color: Colors.grey.shade400,
size: 20,
),
],
),
),
),
);
}
}