Last updated:
0 purchases
kohana
Kohana #
State management (flutter_hooks based), validators, common models, event bus, responsive layout and more in one codebase.
State management #
State management and widget lifecycle events
void handleManagedFields() {}
void componentDidMount() {}
void componentWillUnmount() {}
WidgetBuilder managedView(String path, [Map<String, dynamic> params]);
void setState([VoidCallback fn]);
var mounted = false;
copied to clipboard
Various models #
Models with properties like disposeBag, T data , void dispose(), isWaiting...
class BaseViewModel<T extends BaseModel>
class BaseModel
class SingleItemsModel<T> extends BaseModel
class Tuple
class Sink
class EventBus
copied to clipboard
Validators #
Including Validator
final validator = MultiValidator([
MinLengthValidator(validators.charactersCount),
AlphanumericValidator(),
]);
copied to clipboard
Views #
Utils for building responsive layouts:
class SizingInformation
class ScreenTypeLayout
class ResponsiveBuilder
class OrientationLayout
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.