neuron 1.2.0 copy "neuron: ^1.2.0" to clipboard
neuron: ^1.2.0 copied to clipboard

Signal/Slot reactive state management for Flutter. Clean syntax, powerful features including middleware, persistence, time-travel debugging, and code generation support.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:neuron/neuron.dart';
import 'pages/home_page.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return NeuronApp(
      title: 'Neuron AnimatedSlot Showcase',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.indigo),
        useMaterial3: true,
      ),
      darkTheme: ThemeData(
        colorScheme: ColorScheme.fromSeed(
          seedColor: Colors.indigo,
          brightness: Brightness.dark,
        ),
        useMaterial3: true,
      ),
      home: const HomePage(),
    );
  }
}
3
likes
0
points
98
downloads

Publisher

verified publisherpixeluvw.xyz

Weekly Downloads

Signal/Slot reactive state management for Flutter. Clean syntax, powerful features including middleware, persistence, time-travel debugging, and code generation support.

Repository (GitHub)
View/report issues

Topics

#state-management #reactive-programming #signals-slots #flutter-animation #flutter

License

unknown (license)

Dependencies

device_info_plus, flutter, meta, shelf, shelf_static, web_socket_channel

More

Packages that depend on neuron