https://github.com/mylittlesuite/flutter_essentials_kit
A kit of useful functions and widgets to speed up development.
https://github.com/mylittlesuite/flutter_essentials_kit
essential flutter flutterui kit
Last synced: 11 months ago
JSON representation
A kit of useful functions and widgets to speed up development.
- Host: GitHub
- URL: https://github.com/mylittlesuite/flutter_essentials_kit
- Owner: MyLittleSuite
- License: mit
- Created: 2020-08-06T21:47:10.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-04-14T22:48:27.000Z (11 months ago)
- Last Synced: 2025-04-15T00:45:23.063Z (11 months ago)
- Topics: essential, flutter, flutterui, kit
- Language: Dart
- Homepage:
- Size: 215 KB
- Stars: 9
- Watchers: 3
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# flutter_essentials_kit
A kit of useful functions and widget to speed up development.
[](https://pub.dev/packages/flutter_essentials_kit)

[](https://opensource.org/licenses/MIT)
## Getting Started
Add this to your package's `pubspec.yaml` file:
```
dependencies:
flutter_essentials_kit:
```
## Usage
Just use this import to use the package:
```
import 'package:flutter_essentials_kit/flutter_essentials_kit.dart';
```
Plug the localization class in your `localizationsDelegates`.
```dart
import 'package:flutter_essentials_kit/flutter_essentials_kit.dart';
MaterialApp(
localizationsDelegates: [
// ...
FlutterEssentialsKitLocalizations.delegate,
// ...
);
```
## Docs
* [errors](mds/errors.md)
* [exceptions](mds/exceptions.md)
* [extensions](mds/extensions.md)
* [misc](mds/misc.md)
* [widgets](mds/widgets.md)