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.

example/main.dart

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

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    final counter = context.use(() => ValueNotifier(0), id: 'counter');

    return MaterialApp(
      home: Scaffold(
        body: Center(
          child: Text(
            '${counter.value}',
            style: Theme.of(context).textTheme.headlineMedium,
          ),
        ),
        floatingActionButton: FloatingActionButton(
          onPressed: () => counter.value++,
          child: const Icon(Icons.add),
        ),
      ),
    );
  }
}
1
likes
130
pub points
23%
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