LENS Spinner

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

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

GitHub

View Github