hook_it 0.0.1 copy "hook_it: ^0.0.1" to clipboard
hook_it: ^0.0.1 copied to clipboard

Hook the objects in a simple way with less boilerplate. You can use it, listen it and dispose it in a single function inside the build method.

🪝 Hook it #

pub License: MIT


Hook the objects in a simple way with less boilerplate. You can use it, listen it and dispose it in a single function inside the build method.


Quick Start #

import 'package:flutter/material.dart';
import 'package:hook_it/hook_it.dart';

class Example extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    final focusNode = context.use(FocusNode.new, id: 'focusNode');
    final controller =
        context.use(TextEditingController.new, id: 'controller');

    return TextField(
        focusNode: focusNode,
        controller: controller,
    );
  }
}
1
likes
130
pub points
25%
popularity

Publisher

verified publishereronsoft.com

Hook the objects in a simple way with less boilerplate. You can use it, listen it and dispose it in a single function inside the build method.

Repository (GitHub)
View/report issues

Topics

#hook #hook-it #flutter-hooks #boilerplate

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on hook_it