16 lines
376 B
Dart
16 lines
376 B
Dart
import 'package:flutter/widgets.dart';
|
|
|
|
class InfiniteLazy2dGrid extends StatefulWidget {
|
|
const InfiniteLazy2dGrid({super.key});
|
|
|
|
@override
|
|
State<InfiniteLazy2dGrid> createState() => _InfiniteLazy2dGridState();
|
|
}
|
|
|
|
class _InfiniteLazy2dGridState extends State<InfiniteLazy2dGrid> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Placeholder();
|
|
}
|
|
}
|