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