7 lines
209 B
Dart
7 lines
209 B
Dart
import 'package:example/app.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
void main() {
|
|
runApp(MaterialApp(title: 'Infinite Lazy 2D Grid Example', home: const App(), debugShowCheckedModeBanner: false));
|
|
}
|