summaryrefslogtreecommitdiffstats
path: root/lib/demo_3d.dart
diff options
context:
space:
mode:
Diffstat (limited to 'lib/demo_3d.dart')
-rw-r--r--lib/demo_3d.dart20
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/demo_3d.dart b/lib/demo_3d.dart
deleted file mode 100644
index 9aeda40..0000000
--- a/lib/demo_3d.dart
+++ /dev/null
@@ -1,20 +0,0 @@
-import 'package:flutter/material.dart';
-
-// A 3D demo.
-class Demo3dPage extends StatelessWidget {
- Demo3dPage({Key? key}) : super(key: key);
-
- @override
- Widget build(BuildContext context) {
- return Container(
- decoration: BoxDecoration(
- gradient: LinearGradient(
- begin: Alignment.topRight,
- end: Alignment.bottomLeft,
- colors: [Colors.grey.shade800, Colors.grey.shade900])),
- child: Texture(
- textureId: 1,
- ),
- );
- }
-}