lens_spinner 0.0.2 copy "lens_spinner: ^0.0.2" to clipboard
lens_spinner: ^0.0.2 copied to clipboard

Flutter widget to display a spinner similar to the spinner from the LENS application.

LENS Spinner (linear indeterminate) #

Flutter widget to display a linear indeterminate spinner similar to the spinner from the LENS application

Progress indicators commonly known as spinners, express an unspecified wait time or display the length of a process.

gif

Usage #

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

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

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

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: Scaffold(
        backgroundColor: Colors.black,
        body: Center(
          child: LensSpinner(
            width: 400,
          ),
        ),
      ),
    );
  }
}

Changelog #

Refer to the Changelog to get all release notes.

Features and bugs #

Please file feature requests and bugs at the issue tracker.

License #

WTFPL

0
likes
155
pub points
13%
popularity

Publisher

unverified uploader

Flutter widget to display a spinner similar to the spinner from the LENS application.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

WTFPL (license)

Dependencies

flutter

More

Packages that depend on lens_spinner