loading_card 0.0.5 copy "loading_card: ^0.0.5" to clipboard
loading_card: ^0.0.5 copied to clipboard

A package which displays flashing loading cards while loading content. See this link for an image example: https://imgur.com/a/wFtr7df

example/lib/main.dart

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

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Text('Example Loading'),
        ),
        body: Center(
          // Can be placed alone or in a ListView builder
          child: ListView.builder(
              itemCount: 10,
              itemBuilder: (context, index) {
                return LoadingCard();
              }),
        ),
      ),
    );
  }
}
5
likes
30
pub points
0%
popularity

Publisher

unverified uploader

A package which displays flashing loading cards while loading content. See this link for an image example: https://imgur.com/a/wFtr7df

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on loading_card