Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 16 days 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 4 years ago)
- Default Branch: master
- Last Pushed: 2024-12-28T04:38:44.000Z (27 days ago)
- Last Synced: 2024-12-28T05:23:17.012Z (27 days ago)
- Topics: essential, flutter, flutterui, kit
- Language: Dart
- Homepage:
- Size: 208 KB
- Stars: 9
- Watchers: 4
- Forks: 0
- Open Issues: 6
-
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.[![Pub](https://img.shields.io/pub/v/flutter_essentials_kit.svg)](https://pub.dev/packages/flutter_essentials_kit)
![Dart CI](https://github.com/MyLittleSuite/flutter_essentials_kit/workflows/Dart%20CI/badge.svg)
[![License: MIT](https://img.shields.io/badge/license-MIT-purple.svg)](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)