flutter_web_optimizer 1.1.0 copy "flutter_web_optimizer: ^1.1.0" to clipboard
flutter_web_optimizer: ^1.1.0 copied to clipboard

An load optimization solution for flutter web,solve web page loading slow and browser cache problem

example/lib/main.dart

import 'package:flutter/cupertino.dart' show CupertinoActivityIndicator;
import 'package:flutter/material.dart';

import 'main_page.dart';
import 'sub_page.dart' deferred as sub_page;

void main() {
  runApp(const App());
}

class App extends StatelessWidget {
  const App({Key? key}) : super(key: key);

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        // This is the theme of your application.
        //
        // Try running your application with "flutter run". You'll see the
        // application has a blue toolbar. Then, without quitting the app, try
        // changing the primarySwatch below to Colors.green and then invoke
        // "hot reload" (press "r" in the console where you ran "flutter run",
        // or simply save your changes to "hot reload" in a Flutter IDE).
        // Notice that the counter didn't reset back to zero; the application
        // is not restarted.
        primarySwatch: Colors.blue,
      ),
      initialRoute: '/main',
      routes: {
        '/main': (_) => const MainPage(),
        '/sub': (_) {
          return FutureBuilder<void>(
            future: sub_page.loadLibrary(),
            builder: (_, AsyncSnapshot<void> snapshot) {
              if (snapshot.connectionState == ConnectionState.done) {
                return sub_page.SubPage();
              } else {
                return const CupertinoActivityIndicator();
              }
            },
          );
        },
      },
    );
  }
}
50
likes
0
pub points
79%
popularity

Publisher

verified publisheryiqimanbu.cn

An load optimization solution for flutter web,solve web page loading slow and browser cache problem

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

args, crypto, html, package_config, path

More

Packages that depend on flutter_web_optimizer