flutter_ex_kit 0.0.6 copy "flutter_ex_kit: ^0.0.6" to clipboard
flutter_ex_kit: ^0.0.6 copied to clipboard

Ex Kit Flutter is a powerful and easy-to-use collection of extensions and utility functions designed to enhance your Flutter development experience.

example/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_ex_kit/flutter_ex_kit.dart';
import 'package:flutter_ex_kit/number/int.dart';

class FlutterExKitExample extends StatelessWidget {
  const FlutterExKitExample({super.key});

  @override
  Widget build(BuildContext context) {
    return Column(
      children: [
        // this is for SizedBox height.
        10.height,
        // this is for SizedBox height.
        10.width,
        // this is for only padding.
        Container(
          height: 10,
          width: 20,
          color: Colors.amber,
        ).only(
          left: 10,
          right: 10,
        ),

        // Example of ordinal number usage
        Text('22 in ordinal form: ${22.ordinal}'),

        // Example of Roman numeral conversion
        Text('12 in Roman numeral: ${12.roman}'),
      ],
    );
  }
}
9
likes
160
points
29
downloads
screenshot

Publisher

unverified uploader

Weekly Downloads

Ex Kit Flutter is a powerful and easy-to-use collection of extensions and utility functions designed to enhance your Flutter development experience.

Homepage
Repository (GitHub)
View/report issues

Topics

#flutter #extensions #utilities #development

Documentation

Documentation
API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_ex_kit