Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flutterchina/flukit
A Flutter UI Kit(一个 Flutter UI组件库),包含 ScaleView, Swiper, PullRefresh, WaterMark, GradientCircularProgressIndicator...
https://github.com/flutterchina/flukit
flutter
Last synced: about 15 hours ago
JSON representation
A Flutter UI Kit(一个 Flutter UI组件库),包含 ScaleView, Swiper, PullRefresh, WaterMark, GradientCircularProgressIndicator...
- Host: GitHub
- URL: https://github.com/flutterchina/flukit
- Owner: flutterchina
- Created: 2018-09-21T10:13:16.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-05-20T03:16:39.000Z (8 months ago)
- Last Synced: 2025-01-14T12:12:16.274Z (8 days ago)
- Topics: flutter
- Language: Dart
- Homepage:
- Size: 69.1 MB
- Stars: 5,756
- Watchers: 151
- Forks: 656
- Open Issues: 18
-
Metadata Files:
- Readme: README-EN.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
[中文简体](README.md)|English
# flukit*flukit* is a **Flutter UI Kit**。
## Widgets
| Widget | Description |
| ------------------------------------------ | ------------------------------------------------------------ |
| AfterLayout | A widget can retrieve its render object after layout. |
| AccurateSizedBox | A box with a specified size for its child. It is similar to [SizedBox], but the difference is SizedBox pass the constraints received from its parent to its child, but [AccurateSizedBox] not. |
| AnimatedRotationBox | Rotates child forever |
| DoneWidget | Done tip widget |
| GradientButton
ElevatedGradientButton | Button with gradient colors |
| GradientCircularProgressIndicator | A circular progress indicator with gradient effect. |
| HitTestBlocker | A blocker by which we can intercept hit test flow. |
| KeepAliveWrapper | KeepAliveWrapper can keep the item(s) of scrollview alive. |
| LeftRightBox | A widget which supports left-right layout algorithm。 |
| LayoutLogPrint | A helper widget which can print constraints information in debug mode. |
| LogListenerScope | A stateful widget to listen redirected log events. |
| VerticalLogPanel | A widget to show redirected logs from `print`, which will divide the available display space vertically into two areas, and display the logs below. |
| LogPanel | A widget to show redirected logs from `print`. |
| PullRefreshScope | A widget provides pull refresh scope. Typically, the child is a [CustomScrollView]. |
| SliverPullRefreshIndicator | A indicator for PullRefreshScope. |
| QuickScrollbar | A quick scrollbar for scroll views. |
| Swiper | A scrollable list that works page by page automatically or manually, and it also support loop playbacks. |
| ScaleView | Scale the child from `minScale` to `maxScale` . support scale and double click gesture. |
| SliverFlexibleHeader | A sliver to provide a flexible header that its height can expand when user continue dragging over scroll . Typically as the first child of [CustomScrollView]. |
| SliverPersistentHeaderToBox | A sliver like [SliverPersistentHeader], the difference is [SliverPersistentHeaderToBox] can contain a box widget and use the height of its child directly. |
| SliverHeaderDelegate | Delegate helper for [SliverPersistentHeader] |
| SlideTransitionX | Animates the position of a widget relative to its normal position ignoring the animation direction(always slide along one direction). Typically, is used in combination with [AnimatedSwitcher]. |
| TranslateWithExpandedPaintingArea | A widget that: 1. imposes different constraints on its child than it gets from its parent, possibly allowing the child to overflow the parent. 2. apply translate to its child (specified by [offset]). |
| TurnBox | Animates the rotation of a widget when [turns] is changed. |
| WaterMark | A widget that paints watermark. |## Tools
| Tools | Description |
| -------------------------- | ------------------------------------------------------------ |
| ExtraInfoBoxConstraints | A box constraints with extra information. |
| SafeValueNotifier | Make sure notifying is safe during build/layout/paint phase. |
| RenderObjectAnimationMixin | Animation scheduling helper for RenderObject. |## Contribution&Run demo
### **Project dirs**
```
flukit--lib //demo dir
--package_src
--lib
--src //widget dir
```### **Run demo**
```
flutter run
```
[Demo is here](https://github.com/flutterchina/flukit/tree/main/lib/routes).### **Notice of submission**
If you add a new widget,please follow these rules:
1. Add more details as possible in comments.
2. Add demo in demo dir.