simple_notifier 1.0.2 copy "simple_notifier: ^1.0.2" to clipboard
simple_notifier: ^1.0.2 copied to clipboard

A simple extension to simplify ValueNotifier usage for Flutter applications.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:injectable/injectable.dart';
import 'example_0.dart';
import 'example_1.dart';
import 'example_2.dart';
import 'example_3.dart';
import 'example_di.dart';
import 'injector.dart';

void main() async {
  await configureDependencies(environment: Environment.dev);
  runApp(const MaterialApp(home: MyApp()));
}

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Simple Notifier Example'),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            ElevatedButton(
              onPressed: () => _goto(context, page: const Example0()),
              child: const Text('Example 0'),
            ),
            const SizedBox(height: 8),
            ElevatedButton(
              onPressed: () => _goto(context, page: const Example1()),
              child: const Text('Example 1'),
            ),
            const SizedBox(height: 8),
            ElevatedButton(
              onPressed: () => _goto(context, page: const Example2()),
              child: const Text('Example 2'),
            ),
            const SizedBox(height: 8),
            ElevatedButton(
              onPressed: () => _goto(context, page: const Example3()),
              child: const Text('Example 3'),
            ),
            const SizedBox(height: 8),
            ElevatedButton(
              onPressed: () => _goto(context, page: const ExampleDI()),
              child: const Text('Example DI'),
            ),
          ],
        ),
      ),
    );
  }

  void _goto(BuildContext context, {required Widget page}) {
    Navigator.push(
      context,
      MaterialPageRoute(builder: (context) => page),
    );
  }
}
1
likes
0
pub points
47%
popularity

Publisher

verified publisherkakzaki.dev

A simple extension to simplify ValueNotifier usage for Flutter applications.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on simple_notifier