flutter_base_loader 0.0.6+8 copy "flutter_base_loader: ^0.0.6+8" to clipboard
flutter_base_loader: ^0.0.6+8 copied to clipboard

outdated

easy to load packageInfo deviceInofo and platformInfo,and provice a loadpage to make app more powerful

example/example.md

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

void main() {
  BaseLoading.instance.onReady.then((_) => BaseLoading.instance.complete());
  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      home: BaseLoadingPage(
        home: Scaffold(
          appBar: AppBar(
            title: const Text("titile"),
          ),
          body: const Text("body"),
        ),
      ),
    );
  }
}

1
likes
0
pub points
0%
popularity

Publisher

unverified uploader

easy to load packageInfo deviceInofo and platformInfo,and provice a loadpage to make app more powerful

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

device_info_plus, flutter, package_info_plus, shared_preferences, uuid

More

Packages that depend on flutter_base_loader