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

Ultimate_extension provides powerful extensions for Dart collections and objects, enabling advanced data manipulation and simpler coding."

example/lib/main.dart

import 'package:flutter/material.dart';

import 'package:ultimate_extension/ultimate_extension.dart';

void main() async {
  runApp(MaterialApp(home: ExamplePage()));
}

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
        appBar: AppBar(title: const Text('Shimmer Example')),
        body: Column(
          children: [
            SizedBox(
              height: 10,
              width: double.infinity,
            ),
            Builder(builder: (context) {
              return Container(
                decoration:
                    BoxDecoration(color: Colors.red, shape: BoxShape.circle),
                width: 100,
                height: 100,
              ).shimmer(isLoading: true);
            })
          ],
        ));
  }
}
14
likes
150
points
26
downloads

Publisher

verified publisherthezerone.com

Weekly Downloads

Ultimate_extension provides powerful extensions for Dart collections and objects, enabling advanced data manipulation and simpler coding."

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on ultimate_extension