Last updated:
0 purchases
lens spinner
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.
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,
),
),
),
);
}
}
copied to clipboard
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
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.