dynamicutils

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

dynamicutils

Dynamic Utils #


A Flutter package that provides dynamic sizing capabilities, allowing you to adapt your UI elements to different screen sizes.
Features #

Dynamically adjust the height and width of UI elements based on the screen size.
Easily create responsive UIs that work well on different devices and orientations.
Convenient methods for adding spacing between elements.

Installation #
Add the following line to your pubspec.yaml file:
dependencies:
dynamicutils: <latest_version>
copied to clipboard
Then run flutter pub get to fetch the package.
Usage #
Import the package into your Dart file:
import 'package:dynamicutils/dynamicutils.dart';
copied to clipboard
Initialize the DynamicSize class with the design screen size:
DynamicSize size = DynamicSize(849, 393);
copied to clipboard
Adjust the height and width of your UI elements:
DynamicSize size = DynamicSize(849, 393);
height = size.height(20);
width = size.width(20);
size.HeightSpace(20);
size.WidthSpace(20);
copied to clipboard
Create a new dynamic container:
dContainer(
height: 20,
width: 20,
);
copied to clipboard
For navigation:
pop(context);
newScreen(context, screen());
replaceScreen(context, screen());
copied to clipboard
For more advanced usage and customization options, refer to the package's API documentation.
Examples #
You can find more usage examples in the example folder of this repository.
License #
This project is licensed under the MIT License.
Contributing #
Contributions are welcome! If you have any suggestions, bug reports, or feature requests, please open an issue or submit a pull request.
Get in touch #
If you have any questions, feel free to reach out:

Email: ashrafchauhan567@gmail.com
GitHub: @MohamedAshraf701

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.