loader_bundle

A flutter plugin for loading animations.

Getting Started

This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.

For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

@override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Loader Bundle Example'),
        ),
        body: Loader(
          loaderType: SelectLoaderType.neonGlow,
          size: 60,
          color: Colors.blue,
          isLoading: true,
          child: Center(
            child: Text('Running on: $_platformVersion\n'),
          ),
        ),
      ),
    );
  }