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.

example/main.dart

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,
          ),
        ),
      ),
    );
  }
}
1
likes
155
pub points
22%
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