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

outdated

Loader widget with logo and spinning arc on flutter. Add your image from assets you can create loader animation with the image logo and spinner arround it. Simple with just one widget.

example/lib/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Logo and Spinner Example'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          children: const [
            LogoandSpinner(imageAssets: 'assets/potatoo.png'),
            Text("Reverse : false (default)"),
            SizedBox(
              height: 20,
            ),
            LogoandSpinner(
              imageAssets: 'assets/potatoo.png',
              reverse: true,
            ),
            Text("Reverse : true ")
          ],
        ),
      ),
    );
  }
}
14
likes
0
points
202
downloads

Publisher

verified publisherpmatatias.dev

Weekly Downloads

Loader widget with logo and spinning arc on flutter. Add your image from assets you can create loader animation with the image logo and spinner arround it. Simple with just one widget.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on logo_n_spinner