with_loader 0.0.1 copy "with_loader: ^0.0.1" to clipboard
with_loader: ^0.0.1 copied to clipboard

A Flutter package that provides loading functionality to a widget.

example/lib/main.dart

import 'package:example/src/with_loader_example.dart';
import 'package:flutter/material.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: 'With Loader Example',
      theme: ThemeData(
        primarySwatch: Colors.purple,
      ),
      home: const Scaffold(body: WithLoaderExample()),
    );
  }
}
0
likes
140
pub points
0%
popularity

Publisher

unverified uploader

A Flutter package that provides loading functionality to a widget.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on with_loader