Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Task Board Example

Purpose & Scope

task_board demonstrates a practical feature-level Flutter flow using Levit with scoped controller ownership and reactive UI updates.

Conceptual Overview

The example focuses on:

  • Controller lifecycle ownership via scoped registration.
  • Reactive list mutation with derived selection/filtering state.
  • Rebuild control using both LWatch and selector-focused builders.

Getting Started

flutter pub get
flutter run

Design Principles

  • Keep controller ownership local to feature scope.
  • Prefer selector-based rebuilds on hot render paths.
  • Maintain explicit mutation and derivation boundaries.