flutter_fbi 1.5.3 copy "flutter_fbi: ^1.5.3" to clipboard
flutter_fbi: ^1.5.3 copied to clipboard

A state management library for Flutter using Feature-Binder-Interface architecture pattern. Provides clean separation of business logic, state transformation, and UI.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_fbi_example/navigation.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter FBI Example',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const ExampleNavigator(),
    );
  }
}
3
likes
150
points
500
downloads

Publisher

unverified uploader

Weekly Downloads

A state management library for Flutter using Feature-Binder-Interface architecture pattern. Provides clean separation of business logic, state transformation, and UI.

Repository (GitHub)
View/report issues

Topics

#state-management #architecture #flutter #clean-architecture #dart3-compatible

Documentation

Documentation
API reference

Funding

Consider supporting this project:

github.com

License

Apache-2.0 (license)

Dependencies

equatable, flutter

More

Packages that depend on flutter_fbi