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

A collection of Dart/Flutter Extension functions and Helper functions for faster development. This was developed to aide developers write minimized but powerful codes. It absolutely makes for codes re [...]

extensionresoft #

pub package pub points popularity likes Star on Github Awesome Flutter License: BSD

A collection of useful Dart/Flutter Extension functions and Helper functions for faster development. This was developed to aide developers write minimized but powerful codes. This makes for codes re-usability and easy coding reading. It's aimed at enhancing productivity and improving code readability.

Table of Contents #

Installation #

To use the extensionresoft library in your Flutter project, add it to your pubspec.yaml file:

dependencies:
  extensionresoft: ^0.0.1

Then, run:

flutter pub get

to install the dependencies.

Usage #

Import the extensionresoft library in your Dart files:

import 'package:extensionresoft/extensionresoft.dart';

You can now use any of the extensions provided by the library in your Flutter project.

Features #

The extensionresoft library includes the following extensions:

  • SpaceExtension: Provides methods for creating SizedBox widgets with customizable dimensions.
  • CustomCardExtension: Offers methods for creating custom Card widgets with rounded corners and other properties.
  • PathExtension: Provides a method for applying functions to numbers.
  • TextExtension: Offers a method for creating Text widgets with customizable properties from strings.
  • CustomImageExtension: Provides methods for creating Image widgets and circular image containers with customizable properties.
  • Conditional Function: Provides functions for conditionally returning values.
  • Get Function: Provides a function for getting values with optional default values.

Examples #

Check out the Examples section below for code examples demonstrating how to use the extensions provided by the extensionresoft library.

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

void main() {
  // SpaceExtension Example
  final spacerX = 16.spaceX(); // Creates a SizedBox with a width of 16.
  final spacerY = 24.spaceY(); // Creates a SizedBox with a height of 24.
  final spacerXY = 32.spaceXY(); // Creates a SizedBox with both width and height of 32.
  final spacerXGetter = 20.spX; // Getter example: Creates a SizedBox with a width of 20.
  final spacerYGetter = 30.spY; // Getter example: Creates a SizedBox with a height of 30.
  final spacerXYGetter = 40.spXY; // Getter example: Creates a SizedBox with both width and height of 40.

  // CustomCardExtension Example
  final roundedCard = 16.radius(
    child: const Text('Hello World'),
    elevation: 4,
    color: Colors.blue,
    strokeColor: Colors.black,
    shadowColor: Colors.grey,
  ); // Creates a rounded card with specified properties.

  // PathExtension Example
  final result = 16.p((n) => n * 2); // Applies a function to the number 16 and returns the result.

  // TextExtension Example
  final textWidget = 'Hello'.edit(textStyle: const TextStyle(fontSize: 20), textAlign: TextAlign.center); // Creates a customized Text widget.

  // CustomImageExtension Example
  final imageWidget = 'assets/image.png'.img(width: 100, height: 100, fit: BoxFit.cover); // Creates an Image widget from an asset with specified properties.
  final circleImageContainer = 'assets/avatar.png'.circleImage(fit: BoxFit.cover, opacity: 0.8); // Creates a circular image container with specified properties.

  // Conditional Function Example
  final conditionResult = condition(true, 'True Value', 'False Value'); // Returns 'True Value' based on the condition.
  final conditionFunctionResult = conditionFunction(true, () => 'True Value', () => 'False Value'); // Invokes a function based on the condition.

  // Get Function Example
  final value = get('Existing Value', 'Default Value'); // Returns 'Existing Value' if not null, otherwise returns 'Default Value'.
}

More examples can be found in the example main.dart

Screenshots #

(None applicable in this current release)

Contributing #

Contributions to the extensionresoft library are welcome! If you have any ideas for new extensions or improvements to existing ones, please open an issue or submit a pull request on GitHub.

License #

This project is licensed under the MIT License - see the LICENSE file for details.

4
likes
0
pub points
61%
popularity

Publisher

unverified uploader

A collection of Dart/Flutter Extension functions and Helper functions for faster development. This was developed to aide developers write minimized but powerful codes. It absolutely makes for codes re-usability and easy coding reading.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on extensionresoft