flutter_lazy_load_web 0.1.2 copy "flutter_lazy_load_web: ^0.1.2" to clipboard
flutter_lazy_load_web: ^0.1.2 copied to clipboard

Flutter widget for deferred (lazy) library loading on web — splits JS bundles on demand with zero external dependencies.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'router.dart';

void main() => runApp(const App());

class App extends StatelessWidget {
  const App({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp.router(
      title: 'flutter_lazy_load_web demo',
      routerConfig: router,
      theme: ThemeData(
        colorSchemeSeed: Colors.deepPurple,
        useMaterial3: true,
      ),
    );
  }
}
3
likes
160
points
81
downloads

Documentation

API reference

Publisher

verified publishermatheusvinicius.dev.br

Weekly Downloads

Flutter widget for deferred (lazy) library loading on web — splits JS bundles on demand with zero external dependencies.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_lazy_load_web