From 4afbdf85da7a42cf45eb97d9fd4c64acfc268797 Mon Sep 17 00:00:00 2001 From: danielmolnar Date: Tue, 14 Jan 2025 00:31:26 +0100 Subject: [PATCH] Rm unused test widget --- .../drag/drag_until_visible_test_widget.dart | 42 ------------------- 1 file changed, 42 deletions(-) diff --git a/test/timeline/drag/drag_until_visible_test_widget.dart b/test/timeline/drag/drag_until_visible_test_widget.dart index 5c5cc9d7..88a4eaa1 100644 --- a/test/timeline/drag/drag_until_visible_test_widget.dart +++ b/test/timeline/drag/drag_until_visible_test_widget.dart @@ -81,45 +81,3 @@ class DragUntilVisibleSingleDirectionTestWidget extends StatelessWidget { ); } } - -class DragUntilVisibleMultiDirectionTestWidget extends StatelessWidget { - const DragUntilVisibleMultiDirectionTestWidget({super.key}); - - @override - Widget build(BuildContext context) { - return MaterialApp( - home: Scaffold( - appBar: AppBar( - title: const Text('Grid View Drag Test'), - ), - body: Center( - child: SizedBox( - height: 100, - width: 100, - child: GridView.builder( - gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount( - crossAxisCount: 2, - mainAxisSpacing: 10, - crossAxisSpacing: 10, - ), - itemCount: 4, // Total 4 items - itemBuilder: (context, index) { - return Container( - height: 100, - width: 100, - color: index.isEven ? Colors.red : Colors.blue, - child: Center( - child: Text( - 'Item at index: ${index + 1}', - style: const TextStyle(color: Colors.white), - ), - ), - ); - }, - ), - ), - ), - ), - ); - } -}